代码搜索:complex

找到约 10,000 项符合「complex」的源代码

代码结果 10,000
www.eeworm.com/read/125252/6032365

asm rfft32br.asm

;======================================================================== ; ; File Name : rfft_brc.asm ; ; Originator : Advanced Embeeded Control ; Texas Instruments ;
www.eeworm.com/read/124347/6052485

c w_cabs.c

/* * cabs() wrapper for hypot(). * * Written by J.T. Conklin, * Placed into the Public Domain, 1994. */ #include "fdlibm.h" struct complex { double x; double y; }; double c
www.eeworm.com/read/124347/6052552

c wf_cabs.c

/* * cabsf() wrapper for hypotf(). * * Written by J.T. Conklin, * Placed into the Public Domain, 1994. */ #include "fdlibm.h" struct complex { float x; float y; }; float ca
www.eeworm.com/read/124347/6052592

c w_cabs.c

/* * cabs() wrapper for hypot(). * * Written by J.T. Conklin, * Placed into the Public Domain, 1994. */ #include "fdlibm.h" struct complex { double x; double y; }; double c
www.eeworm.com/read/124347/6052679

c wf_cabs.c

/* * cabsf() wrapper for hypotf(). * * Written by J.T. Conklin, * Placed into the Public Domain, 1994. */ #include "fdlibm.h" struct complex { float x; float y; }; float ca
www.eeworm.com/read/123964/6056585

cpp updatemf.cpp

/*============================================================================== O F E L I Object Finite Element Library ===
www.eeworm.com/read/105599/6197745

properties xmlschemamessages_sk.properties

# This file contains error and warning messages related to XML Schema # The messages are arranged in key and value tuples in a ListResourceBundle. # # @version BadMessageKey = Chybov\u00
www.eeworm.com/read/101082/6241626

c pow_ci.c

/* * "@(#)pow_ci.c 1.1" */ #include "complex" pow_ci(p, a, b) /* p = a**b */ complex *p, *a; long int *b; { dcomplex p1, a1; a1.dreal = a->real; a1.dimag = a->imag; pow_zi(&p1, &a1, b); p->re
www.eeworm.com/read/101082/6241638

c c_log.c

/* * "@(#)c_log.c 1.1" */ #include "complex" c_log(r, z) complex *r, *z; { double log(), cabs(), atan2(); r->imag = atan2(z->imag, z->real); r->real = log( cabs(z->real, z->imag) ); }
www.eeworm.com/read/101082/6241664

c z_log.c

/* * "@(#)z_log.c 1.1" */ #include "complex" z_log(r, z) dcomplex *r, *z; { double log(), cabs(), atan2(); r->dimag = atan2(z->dimag, z->dreal); r->dreal = log( cabs( z->dreal, z->dimag ) ); }