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
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 个)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

标签

尚未输入任何标签。

产品

Community Treasure Hunt

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

Start Hunting!

Translated by