在阶梯图中的标记

时间:2016-01-19 13:15:12

标签: matlab matlab-figure

我正在尝试在阶梯图中设置数据点的标记。我想得到的与Matlab documentation中给出的相似:

enter image description here

通过运行这个我得到的是:

enter image description here

因此也标记了非数据点。知道什么是错的吗?

1 个答案:

答案 0 :(得分:2)

要在旧版本中获得所需的绘图,您可以在绘制楼梯后添加标记:

X = linspace(0,4*pi,20);
Y = sin(X);

figure
stairs(X, Y, '--r');
hold on;
plot(X, Y, 'or');
hold off;

enter image description here