| DoubleComplexMatrixDivision(DoubleComplexMatrix, DoubleComplex) Operator |
Divide a matrix by 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