我试图在MATLAB中找到关于LegendEntry的东西,所以我点击它打开帮助窗口,这就是我所看到的:
如果你想亲眼看到它,请运行以下代码:
h = plot(1:10,1:10);
legend('a')
h.Annotation.LegendInformation
然后你会在命令窗口看到:
ans =
LegendEntry with properties:
IconDisplayStyle: 'on'
LegendEntry是matlab.graphics.eventdata.LegendEntry帮助文件的链接,它弹出上图中的窗口.
你熟悉这个吗?这对我的安装有点问题吗?
我使用MATLAB 2015a.
最佳答案 这里发生的事情是开发人员在matlab.graphics.eventdata.LegendEntry的评论中留下了他或她自己的TODO注释,并且忘记在发布之前删除它.
如果您在最新版本中注意到这一点,那么可能值得将它带到MathWorks通知并带有错误报告:但实际上我只是在16a上试过这个并且它看起来已经被删除了.
这不是您的安装问题.