V7M/src/libF77/z_abs.c

Compare this file to the similar file:
Show the results in this format:

#include "complex"

double z_abs(z)
dcomplex *z;
{
double cabs();

return( cabs( z->dreal, z->dimag ) );
}