asin
(PHP 4, PHP 5, PHP 7, PHP 8)
asin — 逆正弦(アークサイン)
説明
num
のアークサインをラジアンで返します。
asin() は sin() の逆関数です。
つまり、asin() の定義域にある num
の全ての値に対して、$num == sin(asin($num))
が成立します。
パラメータ
num
-
処理する角度。
戻り値
num
のアークサインをラジアンで返します。
+add a note
User Contributed Notes 1 note
rahmatjon at gmail dot com ¶
3 years ago
Hello!
Please put this example below the asin() function's description.
Thank you!
Example:
<?php
$arg = 0.5;
$val = asin($arg);
echo "asin(" . $arg . ") = " . $val . " radians.<br/>";
echo "Pi value = " . pi() . "<br/>";
echo "asin(" . $arg . ") = " . $val/pi()*180 . " degrees<br/>";
$arg = 1;
$val = asin($arg);
echo "asin(" . $arg . ") = " . $val . " radians.<br/>";
echo "Pi value = " . pi() . "<br/>";
echo "asin(" . $arg . ") = " . $val/pi()*180 . " degrees<br/>";
?>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google