the plots come out with different diameters. (all plots with
maximum at phi=0 come out with same size, plot with
maximum at phi=45deg is smaller). i would like
to have the diameter constant and automatic scaling
to match max of the plotted vector.
Any ideas??
Schuffe
This is clearly a bug due to the isoview managment (it can be made
clearer making the graphic window narrow.
Please find attached a new function for polarplot. it is named polar and
ressemble (from the syntax point of view to the plot function)
some examples
t= 0:.01:2*%pi;
clf();polar(sin(7*t),cos(8*t),'b')
clf();polar([sin(7*t') sin(6*t')],[cos(8*t') cos(8*t')])
clf();polar(sin(7*t'),cos(8*t'),'b',sin(6*t'),cos(8*t'),'--r')
function r=rho(t), r=3*sin(8*t)*cos(5*t),endfunction
clf();polar(t,rho,'-+r')