![]() |
| サイトマップ | |
|
与えられた引数の各値に対する正弦 (サイン) 値を範囲として返します。この関数や他の三角関数は User-Defined Transform ダイアログボックスの Trigonometric Units で選択している単位に従って、degrees (度)、radians (ラジアン)、または grads (グラジアン) で値を指定することができます。
sin
(numbers)
引数 numbers には、スカラーもしくは範囲を指定します。
もし、-2 π から 2 π (もしくはこれに相当する値) の範囲外の値を度々使用する場合は、精度低下を回避するために関数 mod
を使用してください。範囲内に含まれる欠損値や文字列は無視され、文字列や欠損値として返されます。
sin({0,30,90,180,270})
は {0,0.5,1,0,-1}
を返します。
This function returns ranges consisting of the sine of each value in the argument given.
This and other trigonometric functions can take values in radians, degrees, or grads. This is determined by the Trigonometric Units selected in the User-Defined Transform dialog box.
sin(numbers)
The numbers argument can be a scalar or range.
If you regularly use values outside of the usual -2π to 2π (or equivalent) range, use the mod function to prevent loss of precision. Any missing value or text string contained within a range is ignored and returned as the string or missing value.
If you choose Degrees as your Trigonometric Units in the Transform dialog box, the operation sin({0,30,90,180,270}) returns values of {0,0.5,1,0,-1}.