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.7.0+b25929339ea1019e260029cf0ebd18b3a0ce2443
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