MATLAB: Plotyy scatter adapt dotes

plotyy plot scatter

Hi
I'm using the following code to generate a scatter plot with two axis.
plotyy(x,y1,x,y2,'scatter')
At the moment all points (the one of y1 and also Y2) have the same color and are the same type. How can I change seperatly the type and the color of the dotes?
Thanks for your help.

Best Answer

x=0:0.1:1;
y1=sin(x);
y2=cos(x);
[ax,h1,h2]=plotyy(x,y1,x,y2,'scatter')
set(h1,'markerfacecolor','r')
set(h2,'markerfacecolor','g')