<< sqrt Exponential Floating point >>

Scilab Help >> Elementary Functions > Exponential > sqrtm

sqrtm

行列の平方根

呼び出し手順

y=sqrtm(x)

引数

x

実数または複素数の正方行列

説明

y = sqrtm(x) は,行列 xの 平方根行列となります(x=y^2). xが対称でない場合, 結果は不正確となる可能性があります.

x=[0 1;2 4]
w=sqrtm(x);
norm(w*w-x)
x(1,2)=%i;
w=sqrtm(x);norm(w*w-x,1)

参照


Report an issue
<< sqrt Exponential Floating point >>