C# 클래스 YAMP.Numerics.HouseholderDecomposition

The Householder reflection is an implementation of a QR decomposition. This decomposition does not work for complex numbers.
상속: QRDecomposition
파일 보기 프로젝트 열기: FlorianRappl/YAMP

보호된 프로퍼티들

프로퍼티 타입 설명
QR ScalarValue[][]
Rdiag ScalarValue[]

공개 메소드들

메소드 설명
HouseholderDecomposition ( MatrixValue A ) : YAMP.Exceptions

Creates a new householder decomposition.

Solve ( MatrixValue b ) : MatrixValue

Least squares solution of A * X = B

메소드 상세

HouseholderDecomposition() 공개 메소드

Creates a new householder decomposition.
public HouseholderDecomposition ( MatrixValue A ) : YAMP.Exceptions
A MatrixValue The matrix to decompose.
리턴 YAMP.Exceptions

Solve() 공개 메소드

Least squares solution of A * X = B
public Solve ( MatrixValue b ) : MatrixValue
b MatrixValue A Matrix with as many rows as A and any number of columns.
리턴 MatrixValue

프로퍼티 상세

QR 보호되어 있는 프로퍼티

Array for internal storage of decomposition.
protected ScalarValue[][] QR
리턴 ScalarValue[][]

Rdiag 보호되어 있는 프로퍼티

Array for internal storage of diagonal of R.
protected ScalarValue[] Rdiag
리턴 ScalarValue[]