  | DoubleBandMatrixAdd(DoubleBandMatrix, Double) Method | 
            Adds a scalar to the non-zero elements of a banded matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleBandMatrix Add(
	DoubleBandMatrix A,
	double a
)
Public Shared Function Add ( 
	A As DoubleBandMatrix,
	a As Double
) As DoubleBandMatrix
public:
static DoubleBandMatrix^ Add(
	DoubleBandMatrix^ A, 
	double a
)
static member Add : 
        A : DoubleBandMatrix * 
        a : float -> DoubleBandMatrix Parameters
- A  DoubleBandMatrix
 - A banded matrix.
 - a  Double
 - A scalar.
 
Return Value
DoubleBandMatrixA banded matrix, 
B, with the same upper and lower bandwidths as 
A,
            and 
B[i,j] = A[i,j] + a 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