Click or drag to resize

DoubleComplexMatrixMultiply(DoubleComplexMatrix, DoubleComplex, DoubleComplexMatrix) Method

Multiply a matrix and a scalar.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static void Multiply(
	DoubleComplexMatrix A,
	DoubleComplex s,
	DoubleComplexMatrix B
)

Parameters

A  DoubleComplexMatrix
A matrix.
s  DoubleComplex
A scalar.
B  DoubleComplexMatrix
A matrix whose contents are overwritten with the product B[i,j] = A[i,j] * s.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if A and B do not have the same dimensions.
See Also