行列逆双曲線余弦
t = acoshm(x)
実数または複素数の正方行列
acoshm は行列x の行列逆双曲線余弦です. 式t=logm(x+(x+eye())*sqrtm((x-eye())/(x+eye()))) を使用します. 非対称行列の場合,結果は不正確となる可能性があります.
acoshm
x
t=logm(x+(x+eye())*sqrtm((x-eye())/(x+eye())))
A=[1,2;3,4]; coshm(acoshm(A)) A(1,1)=A(1,1)+%i; coshm(acoshm(A))