public Basis(
DoubleMatrix basisMatrix
)
Public Sub New (
basisMatrix As DoubleMatrix
)
public:
Basis(
DoubleMatrix^ basisMatrix
)
new :
basisMatrix : DoubleMatrix -> Basis
In a finite vector space having dimension , a basis,
say
,
is a collection of
linearly independent vectors
. Each basis can
be represented by a matrix whose columns are given by the vectors
in the basis:
Given a matrix representation , a
corresponding Basis instance
can be created by passing
as
parameter basisMatrix.
ArgumentNullException | basisMatrix is null. |
ArgumentOutOfRangeException | basisMatrix is not square. -or- basisMatrix is singular. |