如何将“ LineWidth”属性缩放到绘图的尺寸,而不是使用绝对像素值?

时间:2019-08-09 17:05:13

标签: matlab-figure

在绘制时,'LineWidth'属性以屏幕像素为单位设置线的,因此宽度在缩放图形时不会缩放。有没有办法设置宽度,以使其相对于绘图尺寸保持恒定?

例如:

x = 0:0.1:2*pi;
y = sin(x);
figure,plot(x,y,'LineWidth',30)

我希望相对于整个绘图比例线的粗细保持相同,这与调整图形窗口大小时的显示不同。

enter image description here enter image description here

0 个答案:

没有答案