Type alias ComplexNumber

ComplexNumber: {
    imaginary: number;
    real: number;
}

Represents a Complex number with real and imaginary components.

Type declaration

  • imaginary: number
  • real: number

Generated using TypeDoc