Click or drag to resize
DigitalRuneMatrix33DMultiplyTransposed Method
Multiplies the transposed of the given matrix with a column vector.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public static Vector3D MultiplyTransposed(
	Matrix33D matrix,
	Vector3D vector
)

Parameters

matrix
Type: DigitalRune.Mathematics.AlgebraMatrix33D
The matrix.
vector
Type: DigitalRune.Mathematics.AlgebraVector3D
The column vector.

Return Value

Type: Vector3D
The resulting column vector.
Remarks
This method transposes the given matrix and multiplies the transposed matrix with the given vector.
See Also