displaying text before answer

50 visualizaciones (últimos 30 días)
Birce Irmak
Birce Irmak el 10 de Nov. de 2019
Respondida: Sarvesh Kale el 9 de Mzo. de 2023
So I made a function on matlab but i want matlab to display 'the answer is' text and then the answer . How am I suppose to do that? I think I have to use disp code but I couldn't figure how.

Respuestas (2)

Walter Roberson
Walter Roberson el 10 de Nov. de 2019
Editada: Walter Roberson el 10 de Nov. de 2019
Use fprintf() using a format that does not end in \n if you want to display something without going to the next line after.

Sarvesh Kale
Sarvesh Kale el 9 de Mzo. de 2023
refer to the following code
x = 3.14 ;
fprintf("The value of pi is %f \n",x); % this will print the answer in your required format
The value of pi is 3.140000
I hope this helps

Categorías

Más información sobre Interactive Control and Callbacks 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