matlab图例设置
时间: 2023-11-03 19:57:03 浏览: 1084
huitu.zip_MATLAB设置图例
在Matlab中,可以使用legend函数来设置图例。例如,如果要设置三个图例项为'\alpha_1',可以使用以下代码:
legend('\alpha_1','\alpha_1','\alpha_1')
如果Matlab不支持数字输入,则可以使用'location'参数来指定图例的位置。例如,如果要将图例放在右下角,可以使用以下代码:
legend('\alpha_1','\alpha_1','\alpha_1','location','SouthEast')
其中,'SouthEast'代表右下角,'NorthEast'代表右上角,'NorthWest'代表左上角,'SouthWest'代表左下角。
阅读全文