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.
matlabでギザギザの線を描くにはどうすればよいですか?グラフはのこぎりのようになり、傾きは同じですが、ピークが異なります。
例えば:
Peak # Start End 1 (0.2,2.2) (1.5,0) 2 (1.5,3) (3.27,0) 3 (3.27,1.2) (3.98,0) etc.
plotポイントのx座標とy座標で使用するだけです:
plot
x = [0.2 1.5 1.5 3.27 3.27 3.98]; y = [2.2 0 3 0 1.2 0]; plot(x, y)
縦線が欲しくない場合を除きますか?次のように実行できます。
x = [0.2 1.5 nan 1.5 3.27 nan 3.27 3.98]; y = [2.2 0 nan 3 0 nan 1.2 0]; plot(x, y)