Click or drag to resize

DenseMatrix.Multiply Operator

Returns the result of the multiplication of a matrix and a vector.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public static double[] operator *(
	DenseMatrix matrix,
	double[] vector
)

Parameters

matrix
Type: AGI.Foundation.Coordinates.DenseMatrix
The matrix to multiply by the vector.
vector
Type:System.Double[]
The vector being multiplied.

Return Value

Type:Double[]
The array of doubles which is the product of the given matrix and vector.
See Also