Click or drag to resize

Basis Constructor

Initializes a new instance of the Basis class.

Namespace:  Novacta.Analytics.Advanced
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public Basis(
	DoubleMatrix basisMatrix
)

Parameters

basisMatrix
Type: Novacta.AnalyticsDoubleMatrix
The matrix representation of the basis.
Exceptions
ExceptionCondition
ArgumentNullExceptionbasisMatrix is null.
ArgumentOutOfRangeExceptionbasisMatrix is not square.
-or-
basisMatrix is singular.
Remarks

In a finite vector space having dimension LaTeX equation, a basis, say LaTeX equation, is a collection of LaTeX equation linearly independent vectors LaTeX equation. Each basis can be represented by a matrix whose columns are given by the vectors in the basis:

LaTeX equation

Given a matrix representation LaTeX equation, a corresponding Basis instance can be created by passing LaTeX equation as parameter basisMatrix.

See Also