BasisChangeCoordinates Method

Gets coordinates of vectors with respect to a new basis given the coordinates with respect to another basis.

Definition

Namespace: Novacta.Analytics.Advanced
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static DoubleMatrix ChangeCoordinates(
	Basis newBasis,
	DoubleMatrix currentCoordinates,
	Basis currentBasis
)

Parameters

newBasis  Basis
The basis which the new coordinates must be referred to.
currentCoordinates  DoubleMatrix
The current coordinates.
currentBasis  Basis
The current basis.

Return Value

DoubleMatrix
A matrix of coordinates in the new basis.

Remarks

Each row in currentCoordinates is interpreted as the coordinates of a point. Hence, a matrix is returned having the same dimensions of currentCoordinates, in which the i-th row represents the coordinates of the i-th point with respect to the new basis.

Let LaTeX equation and LaTeX equation be the matrix representations of currentBasis, and newBasis, respectively, and let LaTeX equation be currentCoordinates, i.e. the coordinates matrix w.r.t. basis LaTeX equation of the points LaTeX equation under study:

LaTeX equation

Then method ChangeCoordinates(Basis, DoubleMatrix, Basis) returns the matrix

LaTeX equation

Exceptions

ArgumentNullExceptioncurrentCoordinates is null.
-or-
newBasis is null.
-or-
currentBasis is null.
ArgumentOutOfRangeException The Dimension of currentBasis is not equal to the dimension of newBasis.
-or-
The number of columns of currentCoordinates is not equal to the Dimension of newBasis.

See Also