BasisGetVectors Method

Gets the vectors represented by the specified coordinates with respect to the Basis.

Definition

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

Parameters

coordinates  DoubleMatrix
A matrix whose rows are the coordinates of the vectors.

Return Value

DoubleMatrix
A matrix whose rows are the vectors corresponding to the specified coordinates.

Remarks

Each row in coordinates is interpreted as the coordinates of a point. Hence, a matrix is returned having the same dimensions of coordinates, in which the i-th row represents the vector corresponding to the i-th row of coordinates.

Let LaTeX equation be the matrix representation of this instance, and let LaTeX equation be coordinates, the coordinates matrix w.r.t. basis LaTeX equation of the points LaTeX equation under study:

LaTeX equation

Then method GetVectors(DoubleMatrix) returns the matrix

LaTeX equation

Exceptions

ArgumentNullExceptioncoordinates is null.
ArgumentOutOfRangeExceptioncoordinates has a number of columns not equal to the Dimension of the Basis.

See Also