代码搜索:complex

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

代码结果 10,000
www.eeworm.com/read/324057/13292497

h complex.h

#include class Complex { public: Complex(Complex &a); Complex(double r=0,double i=0); void display(); friend Complex operator +(Complex a,Complex b); friend Complex operator
www.eeworm.com/read/324057/13292860

h complex.h

#include using namespace std; class Complex { public: Complex(Complex &a); Complex(double r=0,double i=0); void display(); void set(Complex &a); Complex plus(Complex a); Com
www.eeworm.com/read/324057/13292941

h complex.h

#include class Complex { public: Complex(Complex &a); Complex(double r=0,double i=0); void display(); friend Complex operator +(Complex a,Complex b); friend Complex operator
www.eeworm.com/read/323404/13341096

c complex.c

#include typedef struct FCOMPLEX { double r,i; }fcomplex; fcomplex Cadd(fcomplex a, fcomplex b) { fcomplex c; c.r=a.r+b.r; c.i=a.i+b.i; return c; } fcomplex Csub(fcomplex a, fcomplex b)
www.eeworm.com/read/136574/13371387

c complex.c

/******************************************************************/ /* */ /* file: complex.c
www.eeworm.com/read/318176/13484198

cpp complex.cpp

#include "complex.h" #include using namespace std; BOOL Complex::iszero() const { if (x.iszero() && y.iszero()) return TRUE; return FALSE; } Complex& Complex::operator=(const Com
www.eeworm.com/read/318176/13484206

h complex.h

/* * Quick and dirty complex data type using float arithmetic * Should be extended */ #ifndef COMFLOAT_H #define COMFLOAT_H #include "floating.h" class Complex { Float x,y; pu
www.eeworm.com/read/316036/13531882

cs complex.cs

using System; namespace Mymath { public struct Complex { /// /// Real part of the complex number /// public Double Re;
www.eeworm.com/read/315311/13546835

html complex.html

Xlib Programming Manual: Drawing Complex Text 8.6.1 Drawing Complex Text
www.eeworm.com/read/314035/13576353

cpp complex.cpp

// complex.cpp: implementation of the Complex class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "complex.h" ///////////////////////