How to have a new line inside a string ?

74 visualizaciones (últimos 30 días)
Vinothkumar Sethurasu
Vinothkumar Sethurasu el 20 de Mayo de 2021
Comentada: Vinothkumar Sethurasu el 20 de Mayo de 2021
set(handles.parameterW,'string',{['stiffness = ',num2str(A),' Nm/deg,',' Damping = ',num2str(B),' Nm/(rad/s)']});
Current output:
stiffness = 1 Nm/deg, Damping = 0 Nm/(rad/s)
Output i required:
stiffness = 1 Nm/deg,
Damping = 0 Nm/(rad/s)
  3 comentarios
Vinothkumar Sethurasu
Vinothkumar Sethurasu el 20 de Mayo de 2021
Thanks for your response.
The solution you have provided is working fine.
But, i don't know, how to use inside set(handles.parameterW.....)
Stephen23
Stephen23 el 20 de Mayo de 2021
"But, i don't know, how to use inside set(handles.parameterW.....)"
Change FPRINTF to SPRINTF

Iniciar sesión para comentar.

Respuestas (2)

Girijashankar Sahoo
Girijashankar Sahoo el 20 de Mayo de 2021
set(handles.parameterW,'string',{['stiffness = ',num2str(A)+newline+' Nm/deg,',' Damping = ',num2str(B),'
or
set(handles.parameterW,'string',{['stiffness = ',num2str(A),\n' Nm/deg,',' Damping = ',num2str(B),'
  1 comentario
Vinothkumar Sethurasu
Vinothkumar Sethurasu el 20 de Mayo de 2021
Thanks for your response.
The solution you have provided is not working.

Iniciar sesión para comentar.


Chandra Amma Palanisamy
Chandra Amma Palanisamy el 20 de Mayo de 2021
Hi Vinothkumar,
It is my understanding that you want to insert a newline in a string. The example code is given below:
set(handles.parameterW,'string',{['stiffness = ',num2str(A),' Nm/deg,', newline,' Damping = ',num2str(B),' Nm/(rad/s)']});
Hope this helps.

Categorías

Más información sobre Mathematics en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by