|  | DoubleComplexBandMatrixSubtract(DoubleComplex, DoubleComplexBandMatrix) Method | 
            Subtracts the non-zero elements of a banded matrix from a scalar.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleComplexBandMatrix Subtract(
	DoubleComplex a,
	DoubleComplexBandMatrix A
)
Public Shared Function Subtract ( 
	a As DoubleComplex,
	A As DoubleComplexBandMatrix
) As DoubleComplexBandMatrix
public:
static DoubleComplexBandMatrix^ Subtract(
	DoubleComplex a, 
	DoubleComplexBandMatrix^ A
)
static member Subtract : 
        a : DoubleComplex * 
        A : DoubleComplexBandMatrix -> DoubleComplexBandMatrix Parameters
- a  DoubleComplex
- A scalar.
- A  DoubleComplexBandMatrix
- A banded matrix.
Return Value
DoubleComplexBandMatrixA banded matrix, 
B, with the same upper and lower bandwidths as 
A,
            and 
B[i,j] = a - A[i,j] whenever 
j - i is less than or equal to the 
            upper bandwidth of 
A, or 
i - j is less than or equal to the lower 
            bandwidth of 
A.
 See Also
See Also