C# Класс YAMP.Numerics.HouseholderDecomposition

The Householder reflection is an implementation of a QR decomposition. This decomposition does not work for complex numbers.
Наследование: QRDecomposition
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
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[]