Rcomplex.Rd
Rcomplex is a C struct that represents a complex number, and hence contains two members:
Rcomplex
r, the real part, a double number
r
i, the imaginary part, a double number
i
typedef struct { double r; double i; } Rcomplex;
In R_ext/Complex.h.