我有7個間隔的曲線圖:在積7個標籤插入間隔的標籤上情節
t=0:0.001:10;
y_fcn = @(t) 0.2*cos(t) + cos(1.4*t) + 0.8*cos(5.2*t) + 0.02*randn(1, length(t));
plot(t, y_fcn(t), '-b');
hold on
I = [1, 1430, 2859, 4288, 5717, 7146, 8575, 10001];
plot(t(I), y_fcn(t(I)), '*r')
我想指示所述區間爲(W1,W2,W3,W4,W5,W6,W7)。 謝謝
你想去哪裏標籤出現?在圖上?在一個軸上? – Dan
是的圖上, – user3209872
我也發佈在MATLAB網站上,你可以看到情節http://www.mathworks.co.uk/matlabcentral/answers/114150-how-create-lines-on-plot – user3209872