complex

Represents a complex number.

Service:Math
Defined In:math.h

Structure

  #include <math.h>
  
  __COMPLEX 
  {
     double real; 
     double imag; 
  };
  
  #ifdef __cplusplus
  # define __COMPLEX      struct __COMPLEX
  #else
  # define __COMPLEX      struct complex
  #endif
  

Fields

real

Specifies the real part of the complex number.

imag

Specifies the imaginary part or the complex number.