|  | DoubleComplexBandMatrixAdd(DoubleComplexBandMatrix, DoubleComplexBandMatrix) Method | 
            Adds two banded matrices.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleComplexBandMatrix Add(
	DoubleComplexBandMatrix A,
	DoubleComplexBandMatrix B
)
Public Shared Function Add ( 
	A As DoubleComplexBandMatrix,
	B As DoubleComplexBandMatrix
) As DoubleComplexBandMatrix
public:
static DoubleComplexBandMatrix^ Add(
	DoubleComplexBandMatrix^ A, 
	DoubleComplexBandMatrix^ B
)
static member Add : 
        A : DoubleComplexBandMatrix * 
        B : DoubleComplexBandMatrix -> DoubleComplexBandMatrix Parameters
- A  DoubleComplexBandMatrix
- A banded matrix.
- B  DoubleComplexBandMatrix
- A banded matrix.
Return Value
DoubleComplexBandMatrixA banded matrix 
C where 
C[i,j] = A[i,j] + B[i,j].
 Exceptions
Exceptions See Also
See Also