MATLAB: Could anyone help me how to plot the graph with respect to x axis in normal form and one y axis in semilog and other y axis in normal form.

plotyy

I am having the data in x,y1,y2
in graph i want to have x and y2 in normal and y1 should be in semilog.
When i used the command plotyy(x,y1,x,y2,'loglog')
all three appears to be in semilog
couly anyone help me how to make y1 alone in semilog and x and y2 in normal.

Best Answer

plotyy(x, y1, x, y2,'semilogy', 'plot')