Cove - A Practical Quantum Computer Programming Framework
Addition Operator
NamespacesCove.ClassicalUtilitiesComplexAddition(Complex, Complex)
Perform addition between complex numbers. Addition between complex numbers is defined as (a + bi) + (c + di) = (a + c) + (b + d)i
Declaration Syntax
C#Visual BasicVisual C++
public static Complex operator +(
	Complex LeftSide,
	Complex RightSide
)
Public Shared Operator + ( _
	LeftSide As Complex, _
	RightSide As Complex _
) As Complex
public:
static Complex^ operator +(
	Complex^ LeftSide, 
	Complex^ RightSide
)
Parameters
LeftSide (Complex)
The left hand side of the addition operation
RightSide (Complex)
The right hand side of the addition operation
Return Value
The result of addition between the complex numbers

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