ComplexMatrixPostMultiply Method  | 
 
            Creates a 
ComplexMatrix which is the linear algebra multiplication of this matrix times the given matrix.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic ComplexMatrix PostMultiply(
	ComplexMatrix multiplier
)
Public Function PostMultiply ( 
	multiplier As ComplexMatrix
) As ComplexMatrix
public:
ComplexMatrix^ PostMultiply(
	ComplexMatrix^ multiplier
)
member PostMultiply : 
        multiplier : ComplexMatrix -> ComplexMatrix 
Parameters
- multiplier
 - Type: AGI.Foundation.CoordinatesComplexMatrix
The ComplexMatrix to multiply this matrix by. 
Return Value
Type: 
ComplexMatrixA 
ComplexMatrix which is the multiplication of this matrix by the given matrix.
Exceptions
See Also