Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.See the recommended documentation of this function
行列毎の逆余弦
t = acosm(x)
実数または複素数の正方行列
t は,行列xの逆余弦 となります. 対角化手法を使用する.非対称な行列の場合,結果は不正確と なる可能性があります. t=-%i*logm(x+%i*sqrtm(eye()-x*x))となります.
t
x
t=-%i*logm(x+%i*sqrtm(eye()-x*x))
A=[1,2;3,4]; cosm(acosm(A))