fprintf does not save all the data

조회 수: 6 (최근 30일)
Vahid Askarpour
Vahid Askarpour 2021년 10월 4일
답변: Walter Roberson 2021년 10월 4일
In my workspace, I have a 1x1 struct named modes. It has three fields called x,y,z. Each field is 1x46000 and each cell is a number in exponential format. I would like to save the x array to a .dat file. So I did the following
id = fopen('modes_x.dat', 'wt+');
for i = 1:size(modes.x,1)
fprintf(fid, '%s\r\n', modes(i,1).x)
end
fclose(fid)
Only 20566 values are saved to file. Beyond 20566, there are about 18000 zeros followed by more non-zero numbers. Somehow, fprintf stops saving data when it hits the zeros.
I tried replacing %s with %e but the output is blank.
Does anyone know what I am missing here? Too bad there is no option in the menu bar for such a simple task.
Thank you,
Vahid

채택된 답변

Walter Roberson
Walter Roberson 2021년 10월 4일
When you use fprintf() with a %s format and ask to display a numeric value, then:
  • if the value to be converted is a non-negative integer, including 0, then uint16() of the value would be taken, and that would be used as the character code. These days, mostly that would act as a Unicode character code, but that could vary depending on exactly how the file was opened. For example, integer 65 would be come character code 65, which is the character code for 'A' so A return linefeed would be output. In this case, the code would not output the characters '6' '5'
  • otherwise, if the value has a fraction or is negative, %s does not warn but instead uses a %.6e format.
In the case of 0, char(0) would be emitted, and the \r\n would be emitted. But binary 0 in particular can mess up displays, depending how it is coded.

추가 답변 (1개)

Vahid Askarpour
Vahid Askarpour 2021년 10월 4일
My apologies for the typo. In the first line, "id" should be "fid".
There are two attachments to this message. The Matlab window shows the actual code.
The output screenshot shows the vi output of modes.dat showing the number of lines as 28308. There should be over 41000 lines.
Thanks,
Vahid
  댓글 수: 3
Vahid Askarpour
Vahid Askarpour 2021년 10월 4일
I got the script from searching Matlab Answers. The output screenshot indicates that the code works until it hits zeros.
Vahid Askarpour
Vahid Askarpour 2021년 10월 4일
I did replace the %s with %5.4e and now the output is fine. The %s caused all the zeros to disappear. Thanks Walter.
Vahid

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by