how can i draw this figure
Show older comments
Answers (1)
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 Dates and Time 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!