Why am I unable to make a text object that displays the string 'default' in MATLAB?
1 view (last 30 days)
Show older comments
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.
Accepted Answer
MathWorks Support Team
on 27 Jun 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 Comments
More Answers (0)
See Also
Categories
Find more on Characters and Strings in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!