Why am I unable to make a text object that displays the string 'default' in MATLAB?
1 次查看(过去 30 天)
显示 更早的评论
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.
采纳的回答
MathWorks Support Team
2009-6-27
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!