HOW IS THIS? THANKS
Afficher commentaires plus anciens
For writing formatted ascii output WE often write like fprintf(fid,'%5.3f %5.3f %5.3f %5.3f.. ',A).
Describe code that avoids repeating the format description, say 5 times. HOW DO I DO IT? THANKS.
Réponses (1)
Image Analyst
le 26 Oct 2016
Just put it once:
fprintf(fid,'%5.3f ', A)
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!