Clear Filters
Clear Filters

Shift plot indexing

2 views (last 30 days)
Matt
Matt on 7 Jul 2011
I want to plot, for example, population sizes versus time, with t=0 being the first point. How do I get something like
A = [10 9 7 8 4 2 5 1 0;
10 12 6 8 3 3 4 2 0];
plot(A');
to have the x-axis go from 0 to 8 instead of 1 to 9 (i.e., shift the entire plot to the left 1 unit)?

Accepted Answer

Paulo Silva
Paulo Silva on 7 Jul 2011
A = [10 9 7 8 4 2 5 1 0;
10 12 6 8 3 3 4 2 0];
plot(0:size(A,2)-1,A');

More Answers (0)

Categories

Find more on 2-D and 3-D Plots 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!