Click or drag to resize

FloatComplexMatrixMultiply(FloatComplex, FloatComplexMatrix) Operator

Multiple a scalar and a matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatComplexMatrix operator *(
	FloatComplex s,
	FloatComplexMatrix A
)

Parameters

s  FloatComplex
A scalar.
A  FloatComplexMatrix
A matrix.

Return Value

FloatComplexMatrix
A matrix B where B[i,j] = s * A[i,j].
See Also