다음: Sums and Products, 이전: Complex Arithmetic, 상위 문서: Arithmetic [차례][찾아보기]
Octave provides the following trigonometric functions where angles are
specified in radians. To convert from degrees to radians multiply by
pi/180
or use the deg2rad
function. For example, sin (30 * pi/180)
returns the sine of 30 degrees. As an alternative, Octave provides a number of
trigonometric functions which work directly on an argument specified in
degrees. These functions are named after the base trigonometric function with
a ‘d’ suffix. As an example, sin
expects an angle in radians while
sind
expects an angle in degrees.
Octave uses the C library trigonometric functions. It is expected that these
functions are defined by the ISO/IEC 9899 Standard. This Standard is available
at: http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1124.pdf.
Section F.9.1 deals with the trigonometric functions. The behavior of most of
the functions is relatively straightforward. However, there are some
exceptions to the standard behavior. Many of the exceptions involve the
behavior for -0. The most complex case is atan2. Octave exactly implements
the behavior given in the Standard. Including
atan2(+- 0, 0)
returns +- pi
.
It should be noted that 매트랩 uses different definitions which apparently do not distinguish -0.
Convert degrees to radians.
The input deg must be a scalar, vector, or N-dimensional array of double or single floating point values. deg may be complex in which case the real and imaginary components are converted separately.
The output rad is the same size and shape as deg with degrees
converted to radians using the conversion constant pi/180
.
Example:
deg2rad ([0, 90, 180, 270, 360]) ⇒ 0.00000 1.57080 3.14159 4.71239 6.28319
같이 보기: rad2deg.
Convert radians to degrees.
The input rad must be a scalar, vector, or N-dimensional array of double or single floating point values. rad may be complex in which case the real and imaginary components are converted separately.
The output deg is the same size and shape as rad with radians
converted to degrees using the conversion constant 180/pi
.
Example:
rad2deg ([0, pi/2, pi, 3/2*pi, 2*pi]) ⇒ 0 90 180 270 360
같이 보기: deg2rad.
Compute the hyperbolic secant of each element of 가로.
같이 보기: asech.
Compute the hyperbolic cosecant of each element of 가로.
같이 보기: acsch.
Compute the hyperbolic cotangent of each element of 가로.
같이 보기: acoth.
Compute the inverse hyperbolic sine for each element of 가로.
같이 보기: sinh.
Compute the inverse hyperbolic cosine for each element of 가로.
같이 보기: cosh.
Compute the inverse hyperbolic tangent for each element of 가로.
같이 보기: tanh.
Compute the inverse hyperbolic secant of each element of 가로.
같이 보기: sech.
Compute the inverse hyperbolic cosecant of each element of 가로.
같이 보기: csch.
Compute the inverse hyperbolic cotangent of each element of 가로.
같이 보기: coth.
Compute atan (세로 / 가로) for corresponding elements of 세로 and 가로.
세로 and 가로 must match in size and orientation. The signs of elements of 세로 and 가로 are used to determine the quadrants of each resulting value.
This function is equivalent to arg (complex (가로, 세로))
.
Octave provides the following trigonometric functions where angles are specified in degrees. These functions produce true zeros at the appropriate intervals rather than the small round-off error that occurs when using radians. For example:
cosd (90) ⇒ 0 cos (pi/2) ⇒ 6.1230e-17
Compute the sine for each element of 가로 in degrees.
Returns zero for elements where 가로/180
is an integer.
Compute the cosine for each element of 가로 in degrees.
Returns zero for elements where (가로-90)/180
is an integer.
Compute the tangent for each element of 가로 in degrees.
Returns zero for elements where 가로/180
is an integer and
Inf
for elements where (가로-90)/180
is an integer.
Compute atan (세로 / 가로) in degrees for corresponding elements from 세로 and 가로.
다음: Sums and Products, 이전: Complex Arithmetic, 상위 문서: Arithmetic [차례][찾아보기]