  | DoubleComplexBandMatrixNegate Method | 
            Negation operator.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleComplexBandMatrix Negate(
	DoubleComplexBandMatrix A
)
Public Shared Function Negate ( 
	A As DoubleComplexBandMatrix
) As DoubleComplexBandMatrix
public:
static DoubleComplexBandMatrix^ Negate(
	DoubleComplexBandMatrix^ A
)
static member Negate : 
        A : DoubleComplexBandMatrix -> DoubleComplexBandMatrix Parameters
- A  DoubleComplexBandMatrix
 - A lower triangular matrix.
 
Return Value
DoubleComplexBandMatrixA new lower triangular matrix 
B such that 
B[i,j] = -A[i,j].
See Also