C# 클래스 AIMA.Core.Util.Math.LUDecomposition

파일 보기 프로젝트 열기: PaulMineau/AIMA.Net

공개 메소드들

메소드 설명
LUDecomposition ( Matrix A ) : System
det ( ) : double
getDoublePivot ( ) : double[]
getL ( ) : Matrix
getPivot ( ) : int[]
getU ( ) : Matrix
isNonsingular ( ) : bool
solve ( Matrix B ) : Matrix

메소드 상세

LUDecomposition() 공개 메소드

public LUDecomposition ( Matrix A ) : System
A Matrix
리턴 System

det() 공개 메소드

public det ( ) : double
리턴 double

getDoublePivot() 공개 메소드

public getDoublePivot ( ) : double[]
리턴 double[]

getL() 공개 메소드

public getL ( ) : Matrix
리턴 Matrix

getPivot() 공개 메소드

public getPivot ( ) : int[]
리턴 int[]

getU() 공개 메소드

public getU ( ) : Matrix
리턴 Matrix

isNonsingular() 공개 메소드

public isNonsingular ( ) : bool
리턴 bool

solve() 공개 메소드

public solve ( Matrix B ) : Matrix
B Matrix
리턴 Matrix