C# Class AIMA.Core.Util.Math.LUDecomposition

Show file Open project: PaulMineau/AIMA.Net

Public Methods

Method Description
LUDecomposition ( Matrix A ) : System
det ( ) : double
getDoublePivot ( ) : double[]
getL ( ) : Matrix
getPivot ( ) : int[]
getU ( ) : Matrix
isNonsingular ( ) : bool
solve ( Matrix B ) : Matrix

Method Details

LUDecomposition() public method

public LUDecomposition ( Matrix A ) : System
A Matrix
return System

det() public method

public det ( ) : double
return double

getDoublePivot() public method

public getDoublePivot ( ) : double[]
return double[]

getL() public method

public getL ( ) : Matrix
return Matrix

getPivot() public method

public getPivot ( ) : int[]
return int[]

getU() public method

public getU ( ) : Matrix
return Matrix

isNonsingular() public method

public isNonsingular ( ) : bool
return bool

solve() public method

public solve ( Matrix B ) : Matrix
B Matrix
return Matrix