save a fprintf as text file

조회 수: 21 (최근 30일)
Niklas Reinshagen
Niklas Reinshagen 2020년 5월 24일
댓글: Niklas Reinshagen 2020년 5월 25일
Hey, I've wrote a line of code wich displays the percentage of the Earth Layers Volume.
fprintf('\nPercentage of the EarthLayer:\nCore: %.1f%%\nMantle: %.1f%%\nCrust: %.1f%%\n\n',PercentCore,PercentMantle,PercentCrust)
The Problem is, when i use the save command, is stores a text file but only with the number 74 in it... How can I fix this problem? It should be stores in the way it is displayd under the fprintf-Command code line.

채택된 답변

Fangjun Jiang
Fangjun Jiang 2020년 5월 24일
fid=fopen('MyTextFile.txt','wt');
fprintf(fid,...);
fclose(fid);
  댓글 수: 1
Niklas Reinshagen
Niklas Reinshagen 2020년 5월 25일
Thank you very much! Very easy to use! Just type the title for "MyTextFile.txt", "wt"-means "write", the blue dots after "fid" are the fprintf-command and the fid just defines that this should be stored in a file.
Very Cool, thanks!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Cell Arrays에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by