how can i draw this figure

1 view (last 30 days)
sandy jeak
sandy jeak on 19 Dec 2015
Answered: Star Strider on 19 Dec 2015

Answers (1)

Star Strider
Star Strider on 19 Dec 2015
One approach:
M = bsxfun(@times, [0 0 0 0; ones(24, 4)], [1 -1 1 -1]);
V = [M(:); 0];
plot(0:length(V)-1, V)
axis([0 101 -1.5 1.5])
grid

Categories

Find more on Visual Exploration in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!