public DoubleMatrix GetCoordinates(
DoubleMatrix vectors
)Public Function GetCoordinates (
vectors As DoubleMatrix
) As DoubleMatrixpublic:
DoubleMatrix^ GetCoordinates(
DoubleMatrix^ vectors
)member GetCoordinates :
vectors : DoubleMatrix -> DoubleMatrix 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 be the
matrix representation
of this instance,
and let
be
vectors, a matrix whose rows
are transposed versions of the points
under study:
Then
method GetCoordinates(DoubleMatrix)
returns the coordinates matrix w.r.t. basis
of such points:
| ArgumentNullException | vectors is null. |
| ArgumentOutOfRangeException | vectors has a number of columns not equal to the Dimension of the Basis. |