Mercurial > hg > octave-lyh
diff scripts/plot/__plr__.m @ 5116:67320fb4ae5c
[project @ 2005-01-25 03:57:01 by jwe]
author | jwe |
---|---|
date | Tue, 25 Jan 2005 03:57:01 +0000 |
parents | 57372235194b |
children | 4c8a2e4e0717 |
line wrap: on
line diff
--- a/scripts/plot/__plr__.m +++ b/scripts/plot/__plr__.m @@ -59,7 +59,7 @@ if (isscalar (rho)) x = rho * cos (theta); y = rho * sin (theta); - __plt__ (x, y, fmt); + __plt__ ("polar", x, y, fmt); endif elseif (isvector (theta)) if (isvector (rho)) @@ -74,7 +74,7 @@ endif x = rho .* cos (theta); y = rho .* sin (theta); - __plt__ (x, y, fmt); + __plt__ ("polar", x, y, fmt); elseif (ismatrix (rho)) [t_nr, t_nc] = size (theta); if (t_nr == 1) @@ -95,7 +95,7 @@ endif x = diag (cos (theta)) * rho; y = diag (sin (theta)) * rho; - __plt__ (x, y, fmt); + __plt__ ("polar", x, y, fmt); endif elseif (ismatrix (theta)) if (isvector (rho)) @@ -119,14 +119,14 @@ diag_r = diag (r); x = diag_r * cos (theta); y = diag_r * sin (theta); - __plt__ (x, y, fmt); + __plt__ ("polar", x, y, fmt); elseif (ismatrix (rho)) if (size (rho) != size (theta)) error ("polar: matrix dimensions must match"); endif x = rho .* cos (theta); y = rho .* sin (theta); - __plt__ (x, y, fmt); + __plt__ ("polar", x, y, fmt); endif endif else