How to save a structure file into a text file

조회 수: 39 (최근 30일)
Suman Chatterjee
Suman Chatterjee 2020년 12월 8일
답변: Monisha Nalluru 2020년 12월 11일
I have a struct file with 3 fields(x,y and z) . Each field has many data points. I want to save them to a text file like
(x1 ,y1, z1)
(x2, y2, z2)
.................
Like this.
Plese help me on how can i save them into a text file.
  댓글 수: 1
Rik
Rik 2020년 12월 8일
This question sounds like the solution would be the top hit on Google. What did you try?

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

채택된 답변

Monisha Nalluru
Monisha Nalluru 2020년 12월 11일
From my understanding, you want to save txt file with data points
As an example
s=struct('x',[1,2,3],'y',[4,5,6],'z',[7,8,9]); % structure
fid=fopen('new.txt','w'); % create txt file
for i=1:length(s.x)
fprintf(fid,'(%f,%f,%f)\n',s.x(i),s.y(i),s.z(i)); % write data file in required format
end
fid=fclose(fid); % close the file
type new.txt % display the txt in file

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by