Basis Constructor

Initializes a new instance of the Basis class.

Definition

Namespace: Novacta.Analytics.Advanced
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public Basis(
	DoubleMatrix basisMatrix
)

Parameters

basisMatrix  DoubleMatrix
The matrix representation of the basis.

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.

Exceptions

ArgumentNullExceptionbasisMatrix is null.
ArgumentOutOfRangeExceptionbasisMatrix is not square.
-or-
basisMatrix is singular.

See Also