<< atanh | Trigonometric functions | cart2sph >> |
[theta, rho] = cart2pol(x, y) |
[theta, rho, z] = cart2pol(x, y, z) |
a numeric value (double or single real): Cartesian coordinates
a numeric value (double or single real): Cartesian coordinates
a numeric value (double or single real): Cartesian coordinates
a numeric value: Angular coordinate.
a numeric value: Radial coordinate.
a numeric value: Elevation coordinate.
x = [5 3.5355 0 -10];
y = [0 3.5355 10 0];
[theta, rho] = cart2pol(x, y)
x = [1 2.1213 0 -5];
y = [0 2.1213 4 0];
z = [7 8 9 10];
[theta, rho, el] = cart2pol(x, y, z)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET