How to reuse the same format

1 vue (au cours des 30 derniers jours)
Tianyi Yu
Tianyi Yu le 23 Nov 2019
Modifié(e) : Tianyi Yu le 26 Nov 2019
For example, this code has nine "%7.0f" and one "%5.0f". Is there any way I can simplify this code, like "repmat('%7.0f' , 9)" , but still have the "defaults->" in the front?
fprintf('defaults-> %5.0f%7.0f%7.0f%7.0f%7.0f%7.0f%7.0f%7.0f%7.0f%7.0f\n' , header')

Réponse acceptée

Tianyi Yu
Tianyi Yu le 23 Nov 2019
OK i think i solved this problem already:
fmt = ['# defaults-> %5.0f',repmat('%7.0f',1,8),'%7.0f\n',];
fprintf(fmt,header);

Plus de réponses (1)

Stijn Haenen
Stijn Haenen le 23 Nov 2019
Maybe this will work:
a='%7.0f';
fprintf(strcat('defaults->',repmat(a,1,9),'\n'),header);

Catégories

En savoir plus sur Modeling dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by