DEBSOURCES
Skip Quicknav
sources / scilab / 4.1.2-6 / routines / f2c / libf2c / r_imag.c
12345678910
#include "f2c.h" #ifdef KR_headers double r_imag(z) complex *z; #else double r_imag(complex *z) #endif { return(z->i); }