BasisGetCoordinates Method

Gets the coordinates of the given vectors 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 GetCoordinates(
	DoubleMatrix vectors
)

Parameters

vectors  DoubleMatrix
A matrix whose rows are the vectors whose coordinates are to be computed.

Return Value

DoubleMatrix
A matrix whose rows are the corresponding coordinates with respect to the Basis.

Remarks

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

Let LaTeX equation be the matrix representation of this instance, and let LaTeX equation be vectors, a matrix whose rows are transposed versions of the points LaTeX equation under study:

LaTeX equation

Then method GetCoordinates(DoubleMatrix) returns the coordinates matrix w.r.t. basis LaTeX equation of such points:

LaTeX equation

Exceptions

ArgumentNullExceptionvectors is null.
ArgumentOutOfRangeExceptionvectors has a number of columns not equal to the Dimension of the Basis.

See Also