export data to txt file

조회 수: 8 (최근 30일)
masoud meskin
masoud meskin 2016년 11월 7일
편집: Jan 2016년 11월 7일
Hi guys when i export my daa to a txt file, it exports the numbers with 4 digits after zero like 0.1256. How can i export my data with higher accuracy let's say with 5 or 6 digits after zero like 0.125647?tnx
filename=strcat('transient_profile_fromfrp_450_',num2str(Q),'litmin.txt'); fileID1 = fopen(filename,'w'); formatSpec = 'annalisadiscovered 2 600 0\n'; fprintf(fileID1,formatSpec); fprintf(fileID1,'%5s %6s\n','time',' velocity'); fprintf(fileID1,'%1.4f % 1.4f\n',velo_t1); fclose(fileID1);

채택된 답변

Jan
Jan 2016년 11월 7일
편집: Jan 2016년 11월 7일
Change:
fprintf(fileID1,'%1.4f % 1.4f\n',velo_t1)
to
fprintf(fileID1,'%1.6f % 1.6f\n',velo_t1)
This is explained exhaustively in the documentation of the fprintf command, so please read
doc fprintf

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Low-Level File I/O에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by