Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.See the recommended documentation of this function
W*W' エルミート分解
sqroot(X)
対称非負定実または複素行列
X=W*W' となるようなWを返します(SVDを使用).
X=W*W'
X=rand(5,2)*rand(2,5);X=X*X'; W=sqroot(X) norm(W*W'-X,1) X=rand(5,2)+%i*rand(5,2);X=X*X'; W=sqroot(X) norm(W*W'-X,1)