ToSphericalCoordinates
ToSphericalCoordinates({x, y, z})
returns the spherical coordinates for the cartesian coordinates
{x, y, z}
.
See
- Wikipedia - Spherical coordinate system
- Wikipedia - Polar coordinate system
- Wikipedia - Cartesian coordinate system
Examples
>> ToSphericalCoordinates({x, y, z}){Sqrt(x^2+y^2+z^2),ArcTan(z,Sqrt(x^2+y^2)),ArcTan(x,y)}
Implementation status
- ☑ - partially implemented