sin EXPR
sin

返回 EXPR 的正弦值(以弧度表示)。如果省略 EXPR,则返回 $_ 的正弦值。

对于反正弦运算,可以使用 Math::Trig::asin 函数,或使用此关系

sub asin { atan2($_[0], sqrt(1 - $_[0] * $_[0])) }