Plot for two range of x
8 views (last 30 days)
Show older comments
I have two ranges of x = [0:0.01:1] and x = [2:0.01:3] and I want to plot x vs. Y in one plot for the two rages of x values without using hold on command. Is it possible in matlab?
Below I have used hold on command (which I don't want to use) to plot
x = [0:0.01:1]
Y = x./5;
plot(x, Y, 'Color',[0.85 0.16 0], 'linewidth', 2);
hold on
x = [2:0.01:3]
Y = x./5;
plot(x, Y, 'Color',[0.85 0.16 0], 'linewidth', 2);
0 Comments
Accepted Answer
More Answers (1)
Jos (10584)
on 15 Feb 2013
Or still separate them in different graphic objects:
x1 = [0:0.01:1] ;
y1 = x1./5;
x2 = [2:0.01:3] ;
y2 = x2./5;
plot(x1, y1, '-', x2,y2,'-', 'Color',[0.85 0.16 0], 'linewidth', 2) ;
0 Comments
See Also
Categories
Find more on Annotations 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!