Matlab绘制阈值线

时间:2013-03-23 12:15:07

标签: matlab plot

我想在0.7的图表中添加一条水平阈值线。但我似乎无法让它发挥作用。

代码

figure(1)
plot(Variance);
hold on;
plot([1 frames], threshold, 'red')

Variance是要绘制的数组,帧是绘制的方差数。我试过移动holdplots,但它似乎也没有用。

我知道这是一个简单的问题,但我在网上看到的所有内容似乎也没有用,只是将它们添加到同一个plot()

由于

1 个答案:

答案 0 :(得分:4)

您应该将第二个绘图线更改为

plot([1 frames], [threshold threshold], 'red');