How to plot 3 y axis or more in a single graph?

697 visualizaciones (últimos 30 días)
UTKARSH VERMA
UTKARSH VERMA el 13 de En. de 2018
Comentada: Alessandro De Iasio el 23 de Sept. de 2022
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 comentarios
Roy Kadesh
Roy Kadesh el 13 de En. de 2018
What do you mean? Do you mean you want to plot 3 lines in one figure?
UTKARSH VERMA
UTKARSH VERMA el 13 de En. de 2018
Editada: UTKARSH VERMA el 13 de En. de 2018
I want 3 line in one graph but with 3 axis representing their respective line. For example for Y1 yaxis value range should of range between -1 to 1 but if i use exp(i.e. Y2) axis to represent Y1 then it may give straight line.

Iniciar sesión para comentar.

Respuesta aceptada

ANKUR KUMAR
ANKUR KUMAR el 14 de En. de 2018
Editada: ANKUR KUMAR el 14 de En. de 2018
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'})
  10 comentarios
Alessandro De Iasio
Alessandro De Iasio el 23 de Sept. de 2022
Was anyone able to plot more than one curve for the nth axis?

Iniciar sesión para comentar.

Más respuestas (2)

Jan
Jan el 13 de En. de 2018
Editada: Jan el 13 de En. de 2018
  4 comentarios
UTKARSH VERMA
UTKARSH VERMA el 14 de En. de 2018
Yes, I want to know how to use that function.
Jan
Jan el 14 de En. de 2018
Editada: Jan el 14 de En. de 2018
Simply download it and call it. The help section of this function explains the details. Or see the suggestion of ANKUR KUMAR.

Iniciar sesión para comentar.


yeswanth reddy
yeswanth reddy el 29 de Sept. de 2021
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'})

Categorías

Más información sobre Two y-axis en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by