Borrar filtros
Borrar filtros

How to use a display a string in fprintf

15 visualizaciones (últimos 30 días)
t sizzle
t sizzle el 19 de Mzo. de 2021
Comentada: Gregg Cole el 14 de En. de 2022
I am trying to write a section that will display two numerical values, with their units followed after each. The units will change depending upon what the user enters as their units. So far what I have tried are these two things. I can get it to display the numerical value but if I try to include the units it adds "random" numbers.
fprintf('\n The numerical value is %g %g, and the second value is %g %g.\n', numerical_value_1,num2str(units), numerical_value_two,num2str(units))
fprintf('\n The numerical value is %g %g, and the second value is %g %g.\n', numerical_value_1, units, numerical_value_two, units)

Respuesta aceptada

Image Analyst
Image Analyst el 19 de Mzo. de 2021
Try
units = 'mm'; % Whatever it is, assuming it's a string.
fprintf('\n The numerical value is %g %s, and the second value is %g %s.\n', numerical_value_1, units, numerical_value_two, units)
fprintf('\n The numerical value is %g %s, and the second value is %g %s.\n', numerical_value_1, units, numerical_value_two, units)
  2 comentarios
t sizzle
t sizzle el 19 de Mzo. de 2021
This works perfectly thank you
Gregg Cole
Gregg Cole el 14 de En. de 2022
Worked well as well, thank you

Iniciar sesión para comentar.

Más respuestas (1)

Isabelle Foster
Isabelle Foster el 19 de Mzo. de 2021
If I understand you correctly, it will help you.
Example:
a = {'cats', 'dogs', 'birds'};
as = sort(a);
fprintf('%s, ', as{1:end-1});
fprintf('and %s are animals.\n', as{end});
  3 comentarios
Oliveira Pereira
Oliveira Pereira el 10 de Sept. de 2021
thx
Gregg Cole
Gregg Cole el 14 de En. de 2022
Great, thanks!

Iniciar sesión para comentar.

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by