Effacer les filtres
Effacer les filtres

using fprintf to print same length values

7 vues (au cours des 30 derniers jours)
Ronaldo
Ronaldo le 30 Déc 2013
Modifié(e) : Daniel le 1 Sep 2017
How can I use fprintf to print values with the same length (the number of digits after the pointer is changing based on the number of digits before the pointer)?
0.00000000
30.0000248
360.000305

Réponses (2)

Azzi Abdelmalek
Azzi Abdelmalek le 30 Déc 2013
Modifié(e) : Azzi Abdelmalek le 30 Déc 2013
b=360.000305
m=9 % fixed length
out=sprintf('%9.9f',b)
ii=numel(strfind(out,'.'))
out=out(1:m+ii)
  8 commentaires
Ronaldo
Ronaldo le 31 Déc 2013
Please add the following line (for the sake of completeness). I will accept the answer. Thanks for your great help.
fprintf('%s\n', out);
Azzi Abdelmalek
Azzi Abdelmalek le 31 Déc 2013
Ronaldo, I am not adding anything.

Connectez-vous pour commenter.


Daniel
Daniel le 1 Sep 2017
Modifié(e) : Daniel le 1 Sep 2017
b=360.000305
m=9 % fixed length
out=sprintf('%9.9f',b)
ii=numel(strfind(out,'.'))
out=out(1:m+ii)
% Azzi's got no time for correctness
fprintf('%s\n', out)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by