Click or drag to resize

MatrixTransform Method

Transforms a vector using a matrix and a preallocated buffer.

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
Syntax
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.
Exceptions
ExceptionCondition
MatrixSizeException When the matrix and vector have non-matching sizes.
Remarks
The buffer must have Rows items.
See Also