| DoubleComplexMatrixMultiply(DoubleComplexMatrix, DoubleComplex) Operator |
Multiply a matrix and a scalar.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public static DoubleComplexMatrix operator *(
DoubleComplexMatrix A,
DoubleComplex s
)
Public Shared Operator * (
A As DoubleComplexMatrix,
s As DoubleComplex
) As DoubleComplexMatrix
public:
static DoubleComplexMatrix^ operator *(
DoubleComplexMatrix^ A,
DoubleComplex s
)
static let inline (*)
A : DoubleComplexMatrix *
s : DoubleComplex : DoubleComplexMatrix
Parameters
- A DoubleComplexMatrix
- A matrix.
- s DoubleComplex
- A scalar.
Return Value
DoubleComplexMatrixA matrix
B where
B[i,j] = A[i,j] * s.
See Also