代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/183980/9127668
java complex.java
import java.io.*;
/////////////////////////////////////////
public class Complex
{
double real;
double imag;
//-------------------
Complex(){}
Complex(double r,double i){
real=r;
www.eeworm.com/read/380778/9128315
h complex.h
#if !defined COMPLEX_H
#define COMPLEX_H
//------------------------------------
// complex.h
// Complex number
// (c) Reliable Software, 1996
//------------------------------------
#includ
www.eeworm.com/read/281872/9128316
cc complex.cc
/* mkfilter -- given n, compute recurrence relation
to implement Butterworth, Bessel or Chebyshev filter of order n
A.J. Fisher, University of York
September 199
www.eeworm.com/read/281872/9128333
h complex.h
struct c_complex
{ double re, im;
};
struct complex
{ double re, im;
complex(double r, double i = 0.0) { re = r; im = i; }
complex() { } /* uninitialized complex */
complex(c_co
www.eeworm.com/read/182447/9203849
h complex.h
/* -------------------------------------------------------------------- */
/* Z++ Version 1.10 complex.h Last revised 10/10/92 */
/*
www.eeworm.com/read/377063/9296068
h complex.h
/*///////////////////////////////////////////////////////////////////////////////////////////
--------------------------------by linker110@yahoo.com.cn---------------------------------
20:
www.eeworm.com/read/376635/9311356
h complex.h
using namespace std;
class Complex
{
public:
Complex();
Complex(double);
Complex(double,double);
string write() const;
Complex operator+(const Complex&) const;
Complex opera
www.eeworm.com/read/179705/9342312
texi complex.texi
@cindex complex numbers
The functions described in this chapter provide support for complex
numbers. The algorithms take care to avoid unnecessary intermediate
underflows and overflows, allowing the
www.eeworm.com/read/177197/9465715
cpp complex.cpp
//////////////////////////////////////////////////////////////////////
// complex.cpp: implementation of the complex class.
//////////////////////////////////////////////////////////////////////
www.eeworm.com/read/177197/9465716
h complex.h
// complex.h: interface for the complex class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_COMPLEX_H__F89E41C3_0179_11D6_A8DC_D2C4F7FBA735__INCLUDED