Cove - A Practical Quantum Computer Programming Framework
Division Operator
NamespacesCove.ClassicalUtilitiesComplexDivision(Complex, Complex)
Perform division between two complex numbers
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 division (numerator)
RightSide (Complex)
The right hand side of the division (denominator)
Return Value
The result of the division between the complex numbers
Exceptions
ExceptionCondition
NotImplementedExceptionDivsion is not yet needed, so it is not implemented.

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