  | DoubleBandMatrixMultiply(DoubleBandMatrix, DoubleBandMatrix) Method | 
            Multiplies two banded matrices.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleBandMatrix Multiply(
	DoubleBandMatrix A,
	DoubleBandMatrix B
)
Public Shared Function Multiply ( 
	A As DoubleBandMatrix,
	B As DoubleBandMatrix
) As DoubleBandMatrix
public:
static DoubleBandMatrix^ Multiply(
	DoubleBandMatrix^ A, 
	DoubleBandMatrix^ B
)
static member Multiply : 
        A : DoubleBandMatrix * 
        B : DoubleBandMatrix -> DoubleBandMatrix Parameters
- A  DoubleBandMatrix
 - A banded matrix.
 - B  DoubleBandMatrix
 - A banded matrix.
 
Return Value
DoubleBandMatrixA banded matrix 
C where 
C[i,j] = A[i,j] * B[i,j].
Exceptions
RemarksThe lower/upper bandwidths of the result is the lesser of the lower/upper
             bandwiths of the operands. This is not the matrix inner product of A and B
See Also