|  | DoubleComplexMatrixSubtraction(DoubleComplex, DoubleComplexMatrix) Operator | 
            Subtracts a matrix from a scalar.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleComplexMatrix operator -(
	DoubleComplex s,
	DoubleComplexMatrix A
)
Public Shared Operator - ( 
	s As DoubleComplex,
	A As DoubleComplexMatrix
) As DoubleComplexMatrix
public:
static DoubleComplexMatrix^ operator -(
	DoubleComplex s, 
	DoubleComplexMatrix^ A
)
static let inline (-)
        s : DoubleComplex * 
        A : DoubleComplexMatrix  : DoubleComplexMatrixParameters
- s  DoubleComplex
- A scalar.
- A  DoubleComplexMatrix
- A matrix.
Return Value
DoubleComplexMatrixA matrix 
B where 
B[i,j] = s - A[i,j].
 See Also
See Also