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: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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