Click or drag to resize

FloatComplexMatrixAddition(FloatComplexMatrix, FloatComplex) Operator

Adds a matrix and a scalar.

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

Parameters

A  FloatComplexMatrix
A matrix.
s  FloatComplex
A scalar.

Return Value

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