8 lines
71 B
C
8 lines
71 B
C
|
#include "f2c.h"
|
||
|
|
||
|
double d_imag(z)
|
||
|
doublecomplex *z;
|
||
|
{
|
||
|
return(z->i);
|
||
|
}
|