.NET Matrix Library
Addition Operator
See Also  Send Feedback


A
A CSparseMatrix instance on the left side of the addition operator.
B
A CSparseMatrix instance on the right side of the addition operator.
Adds two sparse matrices.

Syntax

Visual Basic (Declaration) 
Public Operator +( _
   ByVal A As CSparseMatrix, _
   ByVal B As CSparseMatrix _
) As CSparseMatrix
C# 
public CSparseMatrix operator +( 
   CSparseMatrix A,
   CSparseMatrix B
)
C++/CLI 
public:
CSparseMatrix^ operator +( 
   CSparseMatrix^ A,
   CSparseMatrix^ B
)

Parameters

A
A CSparseMatrix instance on the left side of the addition operator.
B
A CSparseMatrix instance on the right side of the addition operator.

Return Value

A CSparseMatrix object that represents the result of the addition.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library