Click or drag to resize

BasisGetVectors Method

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

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

Parameters

coordinates
Type: Novacta.AnalyticsDoubleMatrix
A matrix whose rows are the coordinates of the vectors.

Return Value

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

See Also