14 lines
179 B
C
14 lines
179 B
C
#ifndef lint
|
|
static char sccsid[] = "@(#)d_imag.c 1.1 92/07/30 SMI"; /* from UCB 1.1" */
|
|
#endif
|
|
/*
|
|
*/
|
|
|
|
#include "complex.h"
|
|
|
|
double d_imag(z)
|
|
dcomplex *z;
|
|
{
|
|
return(z->dimag);
|
|
}
|