如何自定义matlab图例中的图片?

时间:2018-05-22 21:08:43

标签: matlab legend contour legend-properties

我想绘制一个平面和一个带有图例的表面的等高线图。在同一图中绘制两个曲面可以创建相同的图例。我想更改图例中生成的省略号。我可以在图例图表上绘制平行线而不是椭圆吗?

这是一个示例源代码:

[X,Y] = meshgrid(-3:.1:3);
Z1 = peaks(X,Y);
Z2 = 2*X+3*Y+4;
contour(X,Y,Z1)
colormap jet
shading interp
axis([-3 3 -3 3])
hold on
contour(X,Y,Z2)
legend('surface','plane')

image with equal legends

0 个答案:

没有答案