Click or drag to resize

BasisGetCoordinates Method

Gets the coordinates of the given vectors with respect to the Basis.

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

Parameters

vectors
Type: Novacta.AnalyticsDoubleMatrix
A matrix whose rows are the vectors whose coordinates are to be computed.

Return Value

Type: DoubleMatrix
A matrix whose rows are the corresponding coordinates with respect to the Basis.
Exceptions
ExceptionCondition
ArgumentNullExceptionvectors is null.
ArgumentOutOfRangeExceptionvectors has a number of columns not equal to the Dimension of 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

See Also