sin
sin EXPR
EXPRのサイン(正弦)を返します。EXPRの単位はラジアンです(360度=2πラジアン)。
EXPRを省略すると$_が使われます。
サンプルプログラム
$th = 0; foreach (1..100) { $x = cos $th; $y = sin $th; print "$x $y\n"; $th += 0.1; }
関連項目
・コサイン(余弦)の取得・サイン(正弦)の取得
・タンジェント(正接)の取得
・atan2関数
・cos関数
$th = 0; foreach (1..100) { $x = cos $th; $y = sin $th; print "$x $y\n"; $th += 0.1; }