sub method

Complex sub(
  1. Complex x
)

Implementation

Complex sub(Complex x) {
  return Complex(real - x.real, imaginary - x.imaginary);
}