Borrar filtros
Borrar filtros

How to draw a two y axis and one x axis graph . The Two y axis should arrange in top and bottom and x axis should position in left side of the plot

1 visualización (últimos 30 días)
How to draw a two y axis and one x axis graph . The Two y axis should arrange in top and bottom and x axis should position in left side of the plot
  2 comentarios
Geoff Hayes
Geoff Hayes el 7 de Oct. de 2014
Vishnu - you can use plotyy to plot two y-axes on the left and right side of the axes object. Please provide more details concerning what you are attempting, and why you would want the y axes on the top and bottom of the axes object.
Vishnu
Vishnu el 15 de Oct. de 2014
Sorry for the delay to reply back. i wants to plot x axis in the vertical position and then plot y axis variable in the horizontal position . Since i have two Y variables to plot, one axis i wants to put on bottom and one axis i wants to put on top, because axis readings are different. Actually i already tried the plotyy command. but i cannot swap the y axis and another major problem i am facing is, i can adjust one of the y axis only. please help me to solve this problem

Iniciar sesión para comentar.

Respuestas (1)

Evan
Evan el 15 de Oct. de 2014
Editada: Evan el 15 de Oct. de 2014
If plotyy doesn't work for your purposes, you can create two axes with the same position, then set the 'Color' property of the top axes to 'none' so as to cause it to be transparent. You can then plot one set of data on one axes and one on the other, and change the x and y axis positions to suit your needs. This is quite a bit more messy than plotyy, but I've found it to be a workable solution for cases where I need more control than plotyy can offer.
Here's an example:
figure; a1 = axes; a2 = axes;
plot(1:5,1:5,'-r','Parent',a1)
plot(-2:0.1:2,5*sin(-2:0.1:2),'-g','Parent',a2)
set(a1,'XAxisLocation','top')
set(a2,'Color','none','YTick',[])
uistack(a2,'top')

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by