how to plot step graph
32 次查看(过去 30 天)
显示 更早的评论
I want to plot a step graph using the two matrices below:
W = [0.992; 0.997; 0.99996; 0.99997; 0.999992; 0.999995; 1.0000;];
X = [100; 98; 65; 45; 38; 36; 0;];
I want to use W as the x-axis and X as y-axis
0 个评论
采纳的回答
Star Strider
2019-8-17
I am not certain what a ‘step graph’ refers to.
Try this:
figure
stairs(W, X, 'LineWidth',2)
grid
2 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!