다음: Mathematical Constants, 이전: Rational Approximations, 상위 문서: Arithmetic [차례][찾아보기]
Transform Cartesian coordinates to polar or cylindrical coordinates.
The inputs 가로, 세로 (, and z) must be the same shape, or scalar. If called with a single matrix argument then each row of C represents the Cartesian coordinate (가로, 세로 (, z)).
theta describes the angle relative to the positive x-axis.
r is the distance to the z-axis (0, 0, z).
If only a single return argument is requested then return a matrix P where each row represents one polar/(cylindrical) coordinate (theta, phi (, z)).
Transform polar or cylindrical coordinates to Cartesian coordinates.
The inputs theta, r, (and z) must be the same shape, or scalar. If called with a single matrix argument then each row of P represents the polar/(cylindrical) coordinate (theta, r (, z)).
theta describes the angle relative to the positive x-axis.
r is the distance to the z-axis (0, 0, z).
If only a single return argument is requested then return a matrix C where each row represents one Cartesian coordinate (가로, 세로 (, z)).
Transform Cartesian coordinates to spherical coordinates.
The inputs 가로, 세로, and z must be the same shape, or scalar. If called with a single matrix argument then each row of C represents the Cartesian coordinate (가로, 세로, z).
theta describes the angle relative to the positive x-axis.
phi is the angle relative to the xy-plane.
r is the distance to the origin (0, 0, 0).
If only a single return argument is requested then return a matrix S where each row represents one spherical coordinate (theta, phi, r).
Transform spherical coordinates to Cartesian coordinates.
The inputs theta, phi, and r must be the same shape, or scalar. If called with a single matrix argument then each row of S represents the spherical coordinate (theta, phi, r).
theta describes the angle relative to the positive x-axis.
phi is the angle relative to the xy-plane.
r is the distance to the origin (0, 0, 0).
If only a single return argument is requested then return a matrix C where each row represents one Cartesian coordinate (가로, 세로, z).
다음: Mathematical Constants, 이전: Rational Approximations, 상위 문서: Arithmetic [차례][찾아보기]