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.2.419.0 (24.2.419.0)
Syntax public static double[] operator *(
DenseMatrix matrix,
double[] vector
)
Public Shared Operator * (
matrix As DenseMatrix,
vector As Double()
) As Double()
public:
static array<double>^ operator *(
DenseMatrix^ matrix,
array<double>^ vector
)
static let inline (*)
matrix : DenseMatrix *
vector : float[] : float[]
Parameters
- matrix
- Type: AGI.Foundation.CoordinatesDenseMatrix
The matrix to multiply by the vector. - vector
- Type: SystemDouble
The vector being multiplied.
Return Value
Type:
DoubleThe array of doubles which is the product of the given matrix and vector.
See Also