リサイズはクリックかドラッグ
LinearAlgebraLUDecompose メソッド
Crout法によりLU分解(A=LU)を行う

名前空間:  Popolo.Numerics.MatrixOperation
アセンブリ:  Popolo (in Popolo.dll) バージョン: 2.0.0.0 (2.0.0.0)
構文
C#
public static void LUDecompose(
	ref IMatrix matrix,
	ref int[] perm,
	ref IVector wArray
)

パラメーター

matrix
型: Popolo.Numerics.MatrixOperationIMatrix
入力:LU分解を行う正方行列 出力:上三角+対角成分-U行列、下三角成分-L行列
perm
型: SystemInt32
pivot選択による行置換ベクトル
wArray
型: Popolo.Numerics.MatrixOperationIVector
作業用記憶領域(行数)
解説
Newmerical Recipiesより移植
関連項目