Click or drag to resize

DenseMatrixMultiply 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: 24.1.418.0 (24.1.418.0)
Syntax
public static double[] operator *(
	DenseMatrix matrix,
	double[] vector
)

Parameters

matrix
Type: AGI.Foundation.CoordinatesDenseMatrix
The matrix to multiply by the vector.
vector
Type: SystemDouble
The vector being multiplied.

Return Value

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