I have a problem sprintf %f

3 vues (au cours des 30 derniers jours)
Tina
Tina le 22 Fév 2013
Hey!
I have this code:
a=4.5;
str = sprintf('a = %f',a)
str =
a = 4.500000
Could you please tell me how I can modify this so it prints "a=4.5" for me, without having those zeros?

Réponse acceptée

Image Analyst
Image Analyst le 22 Fév 2013
Use fprintf():
a = 4.5;
fprintf('a = %.1f\n', a); % Specify format specifier %.1f to get one decimal place.
Or you could still use sprintf() if you wanted to use the string somewhere else:
a=4.5;
str = sprintf('a = %.1f',a); % Use semicolon, and create a string variable.
fprintf('%s\n', str); % Print string variable to command window.
  1 commentaire
Tina
Tina le 22 Fév 2013
Thanks :)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Characters and Strings 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