|  | FloatHermCsrSparseMatrixAdd(FloatHermCsrSparseMatrix, FloatHermCsrSparseMatrix, FloatComplex) Method | 
            Computes the some of a Hermitian sparse matrix with the scalar multiple of another.
            Performs the operation C = A + beta*B where
            C[i,j] = A[i,j] + beta*B[i,j].
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static FloatHermCsrSparseMatrix Add(
	FloatHermCsrSparseMatrix A,
	FloatHermCsrSparseMatrix B,
	FloatComplex beta
)
Public Shared Function Add ( 
	A As FloatHermCsrSparseMatrix,
	B As FloatHermCsrSparseMatrix,
	beta As FloatComplex
) As FloatHermCsrSparseMatrix
public:
static FloatHermCsrSparseMatrix^ Add(
	FloatHermCsrSparseMatrix^ A, 
	FloatHermCsrSparseMatrix^ B, 
	FloatComplex beta
)
static member Add : 
        A : FloatHermCsrSparseMatrix * 
        B : FloatHermCsrSparseMatrix * 
        beta : FloatComplex -> FloatHermCsrSparseMatrix Parameters
- A  FloatHermCsrSparseMatrix
- A Hermitian sparse matrix.
- B  FloatHermCsrSparseMatrix
- A Hermitian sparse matrix.
- beta  FloatComplex
- A scalar.
Return Value
FloatHermCsrSparseMatrixSparse matrix representation of 
A + 
beta*
B See Also
See Also