How to plot two different curves in one plot?

1 view (last 30 days)
I am wondering how to plot two different curves with different matrix dimensions in one graph. At first i already did it, but the problem is when i was trying to set limits for two different y-axis. For first curve 0-10 and for second 0-90.
my currently code is:
figure
plot(fr792_10,k19);
hold on
plot(fr792_10vib2,j19vib2);
hold off
Any answer would be helpful.

Accepted Answer

Walter Roberson
Walter Roberson on 26 Aug 2015
See plotyy()
  1 Comment
gasocemo
gasocemo on 26 Aug 2015
I already tried but a dont know how to set xlim value for each curve.

Sign in to comment.

More Answers (0)

Categories

Find more on Two y-axis in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!