ComplexMatrixMultiply Operator (ComplexMatrix, Complex) | 
 
            Returns the result of the multiplication of this 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 Complex[] operator *(
	ComplexMatrix matrix,
	Complex[] vector
)
Public Shared Operator * ( 
	matrix As ComplexMatrix,
	vector As Complex()
) As Complex()
public:
static array<Complex>^ operator *(
	ComplexMatrix^ matrix, 
	array<Complex>^ vector
)
static let inline (*)
        matrix : ComplexMatrix * 
        vector : Complex[]  : Complex[]Parameters
- matrix
 - Type: AGI.Foundation.CoordinatesComplexMatrix
The matrix to be multiplies. - vector
 - Type: AGI.Foundation.CoordinatesComplex
The vector to be multiplied. 
Return Value
Type: 
ComplexThe resultant vector.
See Also