Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.1 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

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)

参照

  • expm — 正方行列の指数関数
  • sqroot — W*W' エルミート分解
Report an issue
<< sqrt Exponential Floating point >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Apr 02 17:37:31 CEST 2013