Cove - A Practical Quantum Computer Programming Framework
Addition Operator
NamespacesCove.ClassicalUtilitiesComplexMatrixAddition(ComplexMatrix, ComplexMatrix)
Perform addition between two matrices of equal size
Declaration Syntax
C#Visual BasicVisual C++
public static ComplexMatrix operator +(
	ComplexMatrix LeftSide,
	ComplexMatrix RightSide
)
Public Shared Operator + ( _
	LeftSide As ComplexMatrix, _
	RightSide As ComplexMatrix _
) As ComplexMatrix
public:
static ComplexMatrix^ operator +(
	ComplexMatrix^ LeftSide, 
	ComplexMatrix^ RightSide
)
Parameters
LeftSide (ComplexMatrix)
The left side of the addition
RightSide (ComplexMatrix)
The right side of the addition
Return Value
The result of the addition
Exceptions
ExceptionCondition
MatrixSizeMismatchExceptionThrown when the matrix sizes do not match for this operation

Assembly: Cove.ClassicalUtilities (Module: Cove.ClassicalUtilities) Version: 1.0.0.0 (1.0.0.0)