Annotation of 40BSD/lib/libF77/z_exp.c, revision 1.1

1.1     ! root        1: #include "complex"
        !             2: 
        !             3: z_exp(r, z)
        !             4: dcomplex *r, *z;
        !             5: {
        !             6: double expx;
        !             7: double exp(), cos(), sin();
        !             8: 
        !             9: expx = exp(z->dreal);
        !            10: r->dreal = expx * cos(z->dimag);
        !            11: r->dimag = expx * sin(z->dimag);
        !            12: }

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.