Filter löschen
Filter löschen

How to Export XML file

4 Ansichten (letzte 30 Tage)
SAMEER ahamed
SAMEER ahamed am 24 Feb. 2014
Kommentiert: Patrik Ek am 3 Mär. 2014
Hi,
I am new for mat-lab , below my mat-lab code export data to XML file ?
I have input video file read getting dynamic values like:
for i=1:10
%Video File Frame count (10),
matrix{1,i}=[4,5,3,2,2,2,21,3,4];%cell array 1-by-8 matrix ,export to vector data.
Note:In XML file like format i would like to export data from mat-lab please let me know .Thanks
end
  5 Kommentare
SAMEER ahamed
SAMEER ahamed am 26 Feb. 2014
Bearbeitet: SAMEER ahamed am 26 Feb. 2014
Thank's for reply me .I have input video file read frame each frame different values 1-by-8 matrix. I want to form my coordinates values like matrix=[[3,2,1,3,2,4,3,2],[4,2,4,23,2,2,4],[4,5,3,22,3,5,7,9]];etc. so these values need to stored in XML file below like
if true
% code
<edu.lipreading.Sample>
<id>GoodMorning2 08:52:13 25/02/2014</id>
<matrix class="vector"/>
<vector>
<int>3</int>
<int>2</int>
<int>1</int>
<int>3</int>
<int>2</int>
<int>4</int>
<int>2</int>
<int>1</int>
</vector>
<vector>
<int>4</int>
<int>2</int>
<int>4</int>
<int>2</int>
<int>3</int>
<int>23</int>
<int>2</int>
<int>4</int>
</vector>
</matrix>
</edu.lipreading.Sample>
end
Note : I have got below result like, but i wanna to stored values like above form .
if true
% code
for i=1:10 % Input video file read frames
matrix{1,i}=[co-ordinate_x,co-ordinate_y,co-ordinate_xx;co-ordinate_xy;co-ordinate_zx;co-ordinate_zy;co-ordinate_px;co-ordinate_py];%here dynamic values
end
end
Patrik Ek
Patrik Ek am 3 Mär. 2014
I am not 100% sure on this one, but I think that you will need to store it as a vector vector here.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by