I have code that will plot a compass plot in octave (3.2.4) /matlab but how do I get rid of the arrows / change color
[x,y]=pol2cart(90*pi/180,1);
compass(x,y)
I tried
[x,y]=pol2cart(90*pi/180,1);
compass(x,y,'*')
and
[x,y]=pol2cart(90*pi/180,1);
compass(x,y,'--r')
along with several combinations any idea?
Thanks