代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/190666/5179118
c 981223-1.c
__complex__ float
func (__complex__ float x)
{
if (__real__ x == 0.0)
return 1.0;
else
return 0.0;
}
www.eeworm.com/read/340665/3279895
c 981223-1.c
__complex__ float
func (__complex__ float x)
{
if (__real__ x == 0.0)
return 1.0;
else
return 0.0;
}
www.eeworm.com/read/440906/1781537
c 981223-1.c
__complex__ float
func (__complex__ float x)
{
if (__real__ x == 0.0)
return 1.0;
else
return 0.0;
}
www.eeworm.com/read/369142/9661831
cpp chanawgn.cpp
/**********************************************/
/* AWGN
/* struct Complex * ChanAwgnF(struct BasicParaS * ctrl, struct Complex * input, double Eb_No_dB)
/* Written by: Ouyang Ziyue,
/*
www.eeworm.com/read/233522/4668241
c r_cnjg.c
#include "f2c.h"
#include "netlib.h"
#ifdef KR_headers
VOID r_cnjg(r, z) complex *r, const complex *z;
#else
VOID r_cnjg(complex *r, const complex *z)
#endif
{
r->r = z->r;
r->i = -
www.eeworm.com/read/359352/2978782
txt 例10.2.txt
例10.2 改写例10.1,重载运算符“+”,使之能用于两个复数相加。
#include
using namespace std;
class Complex
{public:
Complex( ){real=0;imag=0;}
Complex(double r,double i){real=r;imag=i;}
Complex operator+(Compl
www.eeworm.com/read/185936/8972229
asm 2-dit-fft.asm
*
* TITL COMPLEX, RADIX-2, FFT
*
* GENERIC PROGRAM TO DO A RADIX-2 COMPLEX FFT COMPUTATION IN TMS320C30
*
* THE COMPLEX DATA RESIDE IN INTERNAL MEMORY. THE COMPUTATION IS DONE
* IN-PLACE,B
www.eeworm.com/read/37180/899778
cpp xt10-1.cpp
#include
using namespace std;
class Complex
{public:
Complex(){real=0;imag=0;}
Complex(double r,double i){real=r;imag=i;}
double get_real();
double get_imag();
void
www.eeworm.com/read/233448/4681589
f90 direct_io_3.f90
! { dg-do run }
! PR 18710 : We used to not read and write the imaginary part of
! complex numbers
COMPLEX C, D
DOUBLE COMPLEX E, F
OPEN(UNIT=9,FILE='PR18710',ACCESS='DIRECT',RE
www.eeworm.com/read/364259/2906777
cpp xt10-1.cpp
#include
using namespace std;
class Complex
{public:
Complex(){real=0;imag=0;}
Complex(double r,double i){real=r;imag=i;}
double get_real();
double get_imag();
void