代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/320652/3544895
c nldbl-creal.c
#include "nldbl-compat.h"
#include
double
attribute_hidden
creall (double _Complex x)
{
return creal (x);
}
www.eeworm.com/read/320652/3544901
c nldbl-carg.c
#include "nldbl-compat.h"
#include
double
attribute_hidden
cargl (double _Complex x)
{
return carg (x);
}
www.eeworm.com/read/320652/3545026
c nldbl-cabs.c
#include "nldbl-compat.h"
#include
double
attribute_hidden
cabsl (double _Complex x)
{
return cabs (x);
}
www.eeworm.com/read/320652/3545050
c nldbl-cimag.c
#include "nldbl-compat.h"
#include
double
attribute_hidden
cimagl (double _Complex x)
{
return cimag (x);
}
www.eeworm.com/read/367182/2852921
c nldbl-creal.c
#include "nldbl-compat.h"
#include
double
attribute_hidden
creall (double _Complex x)
{
return creal (x);
}
www.eeworm.com/read/367182/2852927
c nldbl-carg.c
#include "nldbl-compat.h"
#include
double
attribute_hidden
cargl (double _Complex x)
{
return carg (x);
}
www.eeworm.com/read/367182/2853060
c nldbl-cabs.c
#include "nldbl-compat.h"
#include
double
attribute_hidden
cabsl (double _Complex x)
{
return cabs (x);
}
www.eeworm.com/read/367182/2853085
c nldbl-cimag.c
#include "nldbl-compat.h"
#include
double
attribute_hidden
cimagl (double _Complex x)
{
return cimag (x);
}
www.eeworm.com/read/475809/1381879
c fixrts.c
#include
#include "complex.h"
#define NMAX 100
#define ZERO Complex(0.0,0.0)
#define ONE Complex(1.0,0.0)
void fixrts(float d[], int m)
{
void zroots(fcomplex a[], int m, fcomplex
www.eeworm.com/read/470720/1451258
c 981007-1.c
extern double fabs (double);
extern double sqrt (double);
typedef struct complexm {
double re,im;
} complex;
static complex
setCom (double r, double i)
{
complex ct;
ct.re=fabs(r)