how to use a simple statement to describe a repeat format output about the function "fprintf"?

13 vues (au cours des 30 derniers jours)
For example, fprintf(fid,'%4.2f %4.2f %4.2f %4.2f %4.2f',data) there are 5 '%4.2f', Can a simple statement like the (5'%4.2') to simplify the output format? I have no idea about it and do not find in the documents of matlab.

Réponse acceptée

Matt Fig
Matt Fig le 17 Nov 2012
fprintf(fid,repmat('%4.2f',1,5),data)
  3 commentaires
Matt Fig
Matt Fig le 22 Nov 2012
Modifié(e) : Matt Fig le 22 Nov 2012
C = {'%5.2f ';'%4.3f ';'\n'};
[C{[1 2*ones(1,8) 3]}]
You can build C with as many elements as needed then pass in an index to get the order and number you need.
Henry Wolkowicz
Henry Wolkowicz le 19 Avr 2025
Modifié(e) : Henry Wolkowicz le 19 Avr 2025
can one complicate things with
C={'%5.2f & '} for latex table purposes? I keep getting 'number' echos if I try this

Connectez-vous pour commenter.

Plus de réponses (1)

Image Analyst
Image Analyst le 17 Nov 2012
No need to replicate the format string - it will do that automatically. Try it this way:
fprintf(fid,'%4.2f ', data);
  3 commentaires
Image Analyst
Image Analyst le 22 Nov 2012
Not sure I understand. That will have every 9th element print with a field width of 5 and the 8 numbers in between print with a field width of 4. Also the printout line will have 9 numbers per row whereas your array has 8 numbers per row. Is that what you want, or not? Because that's what you'd be telling it to do.
Liang He
Liang He le 22 Nov 2012
Thank you for your answer, the Matt Fig has solved it.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Standard File Formats dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by