Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
cotd
コタンジェント(余接,引数の単位:度)
呼び出し手順
y = cotd(x)
引数
- x
実数配列.
- y
x
と同じ次元の実数配列.
説明
y
のエントリは,x
(単位は度と仮定)
の対応するエントリのコタンジェント,
t=cos(x)./sin(x)
となります.
整数n
についてn*180
に等しいエントリは無限大となります.
一方,%pi
を正確に表現できないため,
cotg(n*%pi)
は大きいですが有限となります.
エントリが整数で奇数のn
について
n*90
に
等しい場合,結果は厳密に0
となります.
例
cotd([30 45 60 90]) cotd([-180 -90 0 90 180])
--> cotd([30 45 60 90]) ans = 1.7320508 1. 0.5773503 0. --> cotd([-180 -90 0 90 180]) ans = Inf 0. Inf 0. Inf
Report an issue | ||
<< cosh | Trigonometry | cotg >> |