i plotted a graph its X-axis ranging from 0-1800 with a spacing of 200. how can i change the interval to 50 with same range(0-1800)
4 views (last 30 days)
Show older comments
axis setting
0 Comments
Answers (2)
Azzi Abdelmalek
on 19 Feb 2014
x=0:200:1800
y=sin(x)
xi=0:50:1800
yi=interp1(x,y,xi)
plot(xi,yi)
0 Comments
See Also
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!