Why am I unable to make a text object that displays the string 'default' in MATLAB?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I am trying to display the text string "default" using the TEXT command as shown below:
text('String','default','Position',[0.3827 0.5117 9.16],'FontSize',80);
I get a blank axes without any text displayed.
Risposta accettata
MathWorks Support Team
il 27 Giu 2009
Setting the Text Property 'String' to 'Default' has another meaning all together. In order to display this word you will need to execute the following command. This prefixes the backslash before the string. You can also add a space before the string.
text('String','\default','Position',[0.1 0.5],'FontSize',80);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Characters and Strings in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!