Insert a line break in Mask-Editor / Parameters / Prompt
69 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Is it possible to insert a line break into the "prompt" field of the parameters pane of the mask editor?
I would like to use multiple lines of text preceding the variable field.
0 commentaires
Réponses (1)
umichguy84
le 30 Jan 2018
You can use the newline char '\n' with fprint or disp.
fprintf([ 'Line1Text ' '\n'...
'Line2Text ' '\n'...
'Line3Text ' ])
OR
disp([ 'Line1Text ' '\n'...
'Line2Text ' '\n'...
'Line3Text ' ])
0 commentaires
Voir également
Catégories
En savoir plus sur Interactive Model Editing dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!