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