LibreOffice 24.8 ヘルプ
与えられた角度の Sin (サイン、正弦) 値を計算します。角度の単位はラジアンです。この関数の戻り値は、-1 から 1 の範囲を取ります。
Using the angle Alpha, the Sin function returns the ratio of the length of the opposite side of an angle to the length of the hypotenuse in a right-angled triangle.
Sin(Alpha) = side opposite the angle/hypotenuse
Sin (Number As Double) As Double
Double
Number: Sin 値を計算させる角度を示す数値表式 (単位はラジアン)。
To convert degrees to radians, multiply degrees by Pi/180, and to convert radians to degrees, multiply radians by 180/Pi.
degrees=(radians*180)/Pi
radians=(degrees*Pi)/180
Pi is approximately 3.141593.
REM この例では、直角三角形を想定しています。
REM ここでは 1 つの頂角 (通常の角度) とその対辺の長さから、斜辺の長さを計算しています。
Sub ExampleSine
REM Pi = 3.1415926 は事前定義されている定数
Dim d1 As Double
Dim dAlpha As Double
d1 = InputBox("Enter the length of the opposite side: ","Opposite Side")
dAlpha = InputBox("Enter the angle Alpha (in degrees):","Alpha")
Print "The length of the hypotenuse is"; (d1 / sin (dAlpha * Pi / 180))
End Sub