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
    6 views (last 30 days)
  
       Show older comments
    
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 Comments
  Geoff Hayes
      
      
 on 7 Oct 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.
Answers (1)
  Evan
      
 on 15 Oct 2014
        
      Edited: Evan
      
 on 15 Oct 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')
1 Comment
  Sean de Wolski
      
      
 on 15 Oct 2014
				I usually use plotyy to build it and then change whatever properties I need to afterward.
See Also
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!


