I have a problem sprintf %f

3 visualizaciones (últimos 30 días)
Tina
Tina el 22 de Feb. de 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?

Respuesta aceptada

Image Analyst
Image Analyst el 22 de Feb. de 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.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by