Reputation: 11
In Matlab scripting, how can I set two different Y-Axis for a single figure (one on the left and the other on the right side of the figure) ???
Upvotes: 1
Views: 171
Reputation: 47280
from here : mathworks
plotyy(X1,Y1,X2,Y2)
plotyy(X1,Y1,X2,Y2,function)
plotyy(X1,Y1,X2,Y2,'function1','function2')
Upvotes: 4