Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通常使用命令时图例出现在右上角
legend('aa', 'bb', 'cc', 'dd')
但这挡住了我的曲线。
如何将其放置在右下角?
这很简单:
legend('aa', 'bb', 'cc', 'dd', 'Location','SouthEast');
那么它如何区分标签和参数呢?它没有。所以如果你说
legend('aa', 'bb', 'cc', 'dd', 'Location');
它会抛出一个错误。因此,如果“位置”是您的标签之一,请使用
legend({'aa', 'bb', 'cc', 'dd', 'Location'});