Clear Filters
Clear Filters

Plot X vs Y, but with two y-axes for different units

4 views (last 30 days)
I want to make a time series plot of an estimation error. So time (X) will be on the x-axis and the error (Y) on the y-axis. On the y-axis to the left I want the units of the absolute error (Y), and then I want another y-axis to the right which display the error as a percentage (lets say Y/100). How can I make this work? I guess there is a simple answer! I have tried ployy(x1,y1,x2,y2), but this is not really what I want as I only really got one x and one y - I just want to show the y-range with other numbers to the right... Thanks!

Answers (1)

Mischa Kim
Mischa Kim on 31 Jan 2014
Edited: Mischa Kim on 31 Jan 2014
How about plotyy(x,y,x,y/100)? Of, course you can work with scaling such that you can see both plots reasonably well. In this case you might just want to adjust the labels using something like
set(get(AX(1),'Ylabel'),'String','y')
set(get(AX(2),'Ylabel'),'String','y/100')
where you get AX as an output from the plot command.
  4 Comments
Mischa Kim
Mischa Kim on 31 Jan 2014
That's good to hear. Did the answer solve your problem though? For all the other users with similar questions.

Sign in to comment.

Categories

Find more on Line 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!