Click or drag to resize

FloatComplexMatrixDivision(FloatComplexMatrix, FloatComplex) Operator

Divide a matrix by 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