MATLAB TODO:填写说明
MATLAB TODO: Fill in Description
我想在 MATLAB 中找到一些关于 LegendEntry
的东西,所以我点击它打开帮助 window,这是我看到的:
如果你想自己看运行这个代码:
h = plot(1:10,1:10);
legend('a')
h.Annotation.LegendInformation
然后你会在命令中看到window:
ans =
LegendEntry with properties:
IconDisplayStyle: 'on'
LegendEntry
是 link 到 matlab.graphics.eventdata.LegendEntry
的帮助文件,弹出上图中的 window。
你熟悉这个吗?这是我安装的某种问题吗?
我使用 MATLAB 2015a。
这里发生的事情是开发人员在 matlab.graphics.eventdata.LegendEntry
的评论中给他或她自己留下了 TODO 注释,但忘记在发布前将其删除。
如果您在最新版本中注意到了这一点,可能值得通过错误报告将其告知 MathWorks:但实际上我刚刚在 16a 上尝试过,看起来它是已经删除了。
不是你安装的问题。
我想在 MATLAB 中找到一些关于 LegendEntry
的东西,所以我点击它打开帮助 window,这是我看到的:
如果你想自己看运行这个代码:
h = plot(1:10,1:10);
legend('a')
h.Annotation.LegendInformation
然后你会在命令中看到window:
ans =
LegendEntry with properties:
IconDisplayStyle: 'on'
LegendEntry
是 link 到 matlab.graphics.eventdata.LegendEntry
的帮助文件,弹出上图中的 window。
你熟悉这个吗?这是我安装的某种问题吗?
我使用 MATLAB 2015a。
这里发生的事情是开发人员在 matlab.graphics.eventdata.LegendEntry
的评论中给他或她自己留下了 TODO 注释,但忘记在发布前将其删除。
如果您在最新版本中注意到了这一点,可能值得通过错误报告将其告知 MathWorks:但实际上我刚刚在 16a 上尝试过,看起来它是已经删除了。
不是你安装的问题。