Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 0.7 图表中添加一条水平阈值线。但我似乎无法让它工作。
代码
figure(1) plot(Variance); hold on; plot([1 frames], threshold, 'red')
方差是要绘制的数组,帧是绘制的方差数。我试过移动hold和移动,plots但它似乎也不起作用。
hold
plots
我知道这是一个简单的问题,但是关于将它们添加到同一个plot().
plot()
谢谢
您应该将第二条绘图线更改为
plot([1 frames], [threshold threshold], 'red');