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

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 >> Linear Algebra > chsolve

chsolve

疎行列のコレスキーソルバ

呼び出し手順

sol=chsolve(spcho,rhs)

パラメータ

spcho

chfact から返されたコード形式のコレスキー分解を含むリスト

rhs, sol

フル列ベクトル

説明

sol=chsolve(spcho,rhs) は, Aを疎行列の正定対称行列として rhs=A*solの解を計算します. この関数は,Ng-Peyton プログラム (ORNL)に基づいています. spchoの変数の詳細な説明については, Fortran プログラムを参照ください.

A=sprand(20,20,0.1);
A=A*A'+eye();  
spcho=chfact(A);
sol=(1:20)';rhs=A*sol;
spcho=chfact(A);
chsolve(spcho,rhs)

参照

  • chfact — 疎行列のコレスキー分解
  • sparse — 疎行列を定義
  • lufact — 疎行列LU分解
  • luget — 疎行列LU分解の展開
  • spchol — 疎行列コレスキー分解
<< chol Linear Algebra classmarkov >>

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:
Thu May 12 11:45:49 CEST 2011