Result = ComplexSub(x,y)
Returns the result (x - y) of the subtraction complex number x and another y.
x : Complex type (Complex)
y : Complex type (Complex)
Result : Complex type (Complex)
Dim a As Complex, b As Complex, c As Complex
a = ComplexSet(1.5, 2.0)
b = ComplexSet(0.5, 3.5)
c = ComplexSub(a, b)