如何通过指令将matlab的legend设置在图的左上方
答案:2 悬赏:0 手机版
解决时间 2021-03-17 11:28
- 提问者网友:自食苦果
- 2021-03-16 11:18
如何通过指令将matlab的legend设置在图的左上方
最佳答案
- 五星知识达人网友:鱼芗
- 2021-03-16 11:39
可以设置legend函数的参数进行大致设置,还可以通过其位置属性进行精确设置。
举例如下:
x=0:pi/20:pi;
y=sin(x);
plot(x,y);
grid on;
% 利用legend函数的参数进行大致设置
legend('sinx',-1); % 位于图形框外面
legend('sinx',0); % 最佳位置
legend('sinx',1); % 右上角
legend('sinx',2); % 左上角
legend('sinx',3); % 左下角
legend('sinx',4); % 右下角
% 利用位置属性进行精确设置
gca=legend( 'sinx', 4 );
set( gca, 'Position', [10, 50, 100, 400]); % [10, 50, 100, 400]为显示的位置坐标
举例如下:
x=0:pi/20:pi;
y=sin(x);
plot(x,y);
grid on;
% 利用legend函数的参数进行大致设置
legend('sinx',-1); % 位于图形框外面
legend('sinx',0); % 最佳位置
legend('sinx',1); % 右上角
legend('sinx',2); % 左上角
legend('sinx',3); % 左下角
legend('sinx',4); % 右下角
% 利用位置属性进行精确设置
gca=legend( 'sinx', 4 );
set( gca, 'Position', [10, 50, 100, 400]); % [10, 50, 100, 400]为显示的位置坐标
全部回答
- 1楼网友:拜訪者
- 2021-03-16 11:53
x=0:pi/20:pi;
y=sin(x);
plot(x,y);
legend('sinx',2); % 左上角
% 其他位置
legend('sinx',-1); % 图形框外面
legend('sinx',0); % 最佳位置
legend('sinx',1); % 右上角
legend('sinx',3); % 左下角
legend('sinx',4); % 右下角以上为例子
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯