代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/277788/10604719
cpp complex.cpp
/* Contains the functions of the class: Complex */
#include "Complex.h"
double abs(Complex c2)
{
/* Actually returns ABS_SQUARED ... */
return c2.re*c2.re + c2.im*c2.im;
}
Complex
www.eeworm.com/read/277788/10604728
h complex.h
#ifndef COMPLEX
#define COMPLEX
#include
class Complex {
double re, im;
public:
Complex():re(0),im(0){}
Complex(double r):re(r),im(0){}
Complex(double x, double y):re(
www.eeworm.com/read/277784/10604768
h complex.h
/* ************************************************************ */
/* C++ Complex Number library, complex.h */
/* */
/* This fi
www.eeworm.com/read/277724/10609182
h complex.h
#if !defined COMPLEX_H
#define COMPLEX_H
//------------------------------------
// complex.h
// Complex number
// (c) Reliable Software, 1996
//------------------------------------
#includ
www.eeworm.com/read/277459/10636992
cs complex.cs
using System;
namespace FFT
{
///
/// Summary description for Complex.
///
public class Complex
{
float real;
float imag;
//----------------------------
www.eeworm.com/read/159517/10644717
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/277322/10646200
cpp complex.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
#include "Complex.h"
//----------------------------------------------------------
www.eeworm.com/read/277322/10646211
h complex.h
//---------------------------------------------------------------------------
#ifndef ComplexH
#define ComplexH
#include
template < typename T > class TComplex // : public TObject
{
www.eeworm.com/read/351296/10661542
dsp complex.dsp
# Microsoft Developer Studio Project File - Name="complex" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) C
www.eeworm.com/read/351296/10661546
cpp complex.cpp
#include
using namespace std;
class complex
{
private:
double real;
double image;
public:
complex ( ); //缺省构造函数
complex (double r, double i); //顺便初始化值的构造函数
com