필터 지우기
필터 지우기

How to Export XML file

조회 수: 2 (최근 30일)
SAMEER ahamed
SAMEER ahamed 2014년 2월 24일
댓글: Patrik Ek 2014년 3월 3일
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
SAMEER ahamed
SAMEER ahamed 2014년 2월 26일
편집: SAMEER ahamed 2014년 2월 26일
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 2014년 3월 3일
I am not 100% sure on this one, but I think that you will need to store it as a vector vector here.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Structured Data and XML Documents에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by