MatrixTransform Method

Transforms a vector using a matrix and a preallocated buffer.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public DVector Transform(
	DVector v,
	double[] result
)

Parameters

v  DVector
Vector to transform.
result  Double
Preallocated buffer for the result.

Return Value

DVector
The transformed vector.

Remarks

The buffer must have Rows items.

Exceptions

MatrixSizeException When the matrix and vector have non-matching sizes.

See Also