Flipping one Y axis out of two
Show older comments
Dear All,
I have got a data set, which has one independent variable (x) and two dependent variables(y1 and y2). I want to plot the data set in one figure as given below and *finally want to flip the y axis related to y2 up side down***.
Experts please help me out
x=1:10;
y1=x.*x;
y2=5*x+3;
figure();
scatter(x,y1,50,'.','r');
hold on;
bar(x,y2,'g')
1 Comment
dpb
on 19 Jun 2013
Use plotyy(), saving the handles. Choose the one of choice to set the y-axis direction on.
Accepted Answer
More Answers (1)
Kushan
on 19 Jun 2013
0 votes
Categories
Find more on Two y-axis in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!