Krishna
Krishna

Reputation: 11

Matlab scripting, Customizing Figures

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

Answers (1)

NimChimpsky
NimChimpsky

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

Related Questions