<< cart2pol | Trigonometric functions | cos >> |
[azimuth, elevation, r] = cart2sph(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: Azimuth angle.
a numeric value: Elevation angle.
a numeric value: Radius.
x = [1 1 1 1; -1 -1 -1 -1];
y = [1 1 -1 -1; 1 1 -1 -1];
z = [1 -1 1 -1; 1 -1 1 -1];
[az, el, r] = cart2sph(x, y, z)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET