How to plot 3 y axis or more in a single graph?
Show older comments
For example: I have to plot X=(1:1:50); Y1=sin(X); Y2=exp(X); Y3=(X).^2; For y-plot I want respective adjusted range of axis.
2 Comments
Roy Kadesh
on 13 Jan 2018
What do you mean? Do you mean you want to plot 3 lines in one figure?
UTKARSH VERMA
on 13 Jan 2018
Edited: UTKARSH VERMA
on 13 Jan 2018
Accepted Answer
More Answers (2)
Do you mean something like https://www.mathworks.com/matlabcentral/fileexchange/46688-jzplotys-zip or https://www.mathworks.com/matlabcentral/fileexchange/9016-addaxis? Or https://www.mathworks.com/help/matlab/ref/yyaxis.html (this one creates 2 axes only)?
4 Comments
UTKARSH VERMA
on 14 Jan 2018
Rik
on 14 Jan 2018
If that submission works for you, why not use it? Or is your question how to use that function?
UTKARSH VERMA
on 14 Jan 2018
yeswanth reddy
on 29 Sep 2021
0 votes
plot((1:5),randi(25,1,5),'r')
addaxis((1:5),randi(25,1,5),'g')
addaxis((1:5),randi(25,1,5),'m')
addaxis((1:5),randi(25,1,5),'y')
legend({'plot1','plot2','plot3','plot4'})
Categories
Find more on Two y-axis 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!