Scilab 6.1.0
Scilabヘルプ >> Elementary Functions > Trigonometry > Matrix-wise processing > acosm
acosm
行列毎の逆余弦
呼び出し手順
t = acosm(x)
引数
- x
実数または複素数の正方行列
- t
実数または複素数の正方行列
説明
t
は,行列x
の逆余弦
となります.
対角化手法を使用する.非対称な行列の場合,結果は不正確と
なる可能性があります.
t=-%i*logm(x+%i*sqrtm(eye()-x*x))
となります.
例
A=[1,2;3,4]; cosm(acosm(A))
Comments
Add a comment:
Please login to comment this page.