代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/279575/10413114
cpp complex.cpp
#include "StdAfx.h"
#include ".\complex.h"
Complex::Complex(void)
{
a=b=0;
}
Complex::Complex(int aa,int bb)
{
a=aa;
b=bb;
}
Complex::~Complex(void)
{
}
Complex::Complex(const Com
www.eeworm.com/read/279575/10413135
h complex.h
#pragma once
using namespace std;
class Complex
{
int a,b;//实部和虚部
public:
Complex(void);
Complex(int aa,int bb);
Complex(const Complex &r);
~Complex(void);
Complex & operator =(const C
www.eeworm.com/read/279387/10442176
c complex.c
/***************************************************************************
* The following functions support complex variable operations *
* *
* Au
www.eeworm.com/read/424281/10468608
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/278816/10504343
c complex.c
/* complex.c - complex arithmetic functions */
#include /* for MSC and TC/BC, it declares: */
/* \ttt{struct complex} and \t
www.eeworm.com/read/278154/10562613
c complex.c
/* CAUTION: This is the ANSI C (only) version of the Numerical Recipes
utility file complex.c. Do not confuse this file with the same-named
file complex.c that is supplied in the same subdire
www.eeworm.com/read/278154/10563212
c complex.c
#include
typedef struct FCOMPLEX {float r,i;} fcomplex;
#if defined(__STDC__) || defined(ANSI) || defined(NRANSI) /* ANSI */
fcomplex Cadd(fcomplex a, fcomplex b)
{
fcomplex c;
www.eeworm.com/read/278154/10563232
h complex.h
#ifndef _NR_COMPLEX_H_
#define _NR_COMPLEX_H_
#ifndef _FCOMPLEX_DECLARE_T_
typedef struct FCOMPLEX {float r,i;} fcomplex;
#define _FCOMPLEX_DECLARE_T_
#endif /* _FCOMPLEX_DECLARE_T_ */
#if d
www.eeworm.com/read/278154/10563678
c complex.c
/* CAUTION: This is the ANSI C (only) version of the Numerical Recipes
utility file complex.c. Do not confuse this file with the same-named
file complex.c that is supplied in the same subdire
www.eeworm.com/read/159946/10585026
c complex.c
/* complex.c - complex arithmetic functions */
#include /* for MSC and TC/BC, it declares: */
/* \ttt{struct complex} and \t