gpt4 book ai didi

matlab - 为什么 MATLAB 不能绘制单词 "factory"?

转载 作者:太空宇宙 更新时间:2023-11-03 19:12:17 24 4
gpt4 key购买 nike

考虑以下 MATLAB 代码:

text(0, 0, 'factory');
xlim([-1, 1]);
ylim([-1, 1]);

预期的目标是有一个带有“工厂”一词的图形。没有字出现。现在用任何其他词替换单词“factory”,上面的代码按预期工作。这已通过 MATLAB 2017b 和 2015b 测试

有人知道这里发生了什么吗?

最佳答案

问题解释

根据 MA​​TLAB title function documentation :

The words default, factory, and remove are reserved words that will not appear in a title when quoted as a normal character vector. To display any of these words individually, precede them with a backslash, such as '\default' or '\remove'.

此逻辑也适用于文本函数。 Default Property Values页面提供了有关 factory 关键字作用的更多详细信息,以及为什么我们不能将其用作图形函数的参数。

解决方案

下面的代码工作正常:

text(0, 0, '\factory');
xlim([-1, 1]);
ylim([-1, 1]);

关于matlab - 为什么 MATLAB 不能绘制单词 "factory"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49899449/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com