代码搜索:complex

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

代码结果 10,000
www.eeworm.com/read/366702/2869681

c unchanging1.c

// { dg-do run } // { dg-options "-O2" } #include #include using namespace std; class A { protected: int a; complex *b; public: A(int n); inline complex
www.eeworm.com/read/424146/2018242

cpp 8_1.cpp

//8_1.cpp #include using namespace std; class complex //复数类声明 { public: //外部接口 complex(double r=0.0,double i=0.0){real=r;imag=i;} //构造函数 complex operator + (complex c2); //运算符+重载成员函
www.eeworm.com/read/15971/640442

h fretrans.h

// FreTrans.h #ifndef _INC_FreTransAPI #define _INC_FreTransAPI #include using namespace std; // 函数原型 VOID WINAPI FFT(complex * TD, complex * FD, int r); VOID
www.eeworm.com/read/229812/4744972

cpp equal.cpp

#include void main( void ) { Complex a (23.4, 26.9), b (34.6, 21.3); Complex c (23.4, 26.9), j (0, 26.9) , k (23.4,0); double x = 23.4, y = 26.9; cout
www.eeworm.com/read/229812/4744974

cpp notequal.cpp

#include void main( void ) { Complex a (23.4, 26.9), b (34.6, 21.3); Complex c (23.4, 26.9), j (0, 26.9) , k (23.4,0); double x = 23.4, y = 26.9; cout
www.eeworm.com/read/338920/3311647

h fretrans.h

// FreTrans.h #ifndef _INC_FreTransAPI #define _INC_FreTransAPI #include using namespace std; // 函数原型 VOID WINAPI FFT(complex * TD, complex * FD, int r); VOID
www.eeworm.com/read/303435/3811697

makefile

# Makefile for ...Complex/lib include $(CWPROOT)/src/Makefile.config D = $I/Complex.h LIB = $L/libComplex.a ARCH = \ $(LIB)(Complex.o) INSTALL: $(LIB) @touch $@ $(ARCH) : $D $(LIB) : $(ARC
www.eeworm.com/read/470720/1451437

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/470693/1463383

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/459034/1575210

java z.java

/* File: Complex.java * -- A Java class for performing complex * number arithmetic to double precision. * * Copyright (c) 1997 - 2