Borrar filtros
Borrar filtros

How to Export XML file

4 visualizaciones (últimos 30 días)
SAMEER ahamed
SAMEER ahamed el 24 de Feb. de 2014
Comentada: Patrik Ek el 3 de Mzo. de 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 comentarios
SAMEER ahamed
SAMEER ahamed el 26 de Feb. de 2014
Editada: SAMEER ahamed el 26 de Feb. de 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 el 3 de Mzo. de 2014
I am not 100% sure on this one, but I think that you will need to store it as a vector vector here.

Iniciar sesión para comentar.

Respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by