代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/357852/10200357
h complex.h
#include
using namespace std;
/** A pair of double,
where re is the "real" coordinate
and im is the "imaginary" coordinate.
Mathematically, we think of this pair as
www.eeworm.com/read/357734/10201981
cpp complex.cpp
// Complex.cpp: implementation of the Complex class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Complex.h"
#include
www.eeworm.com/read/357734/10201986
h complex.h
// Complex.h: interface for the Complex class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_COMPLEX_H__EFFC2607_6B0E_49CB_BF0F_8662391522CA__INCLUDED
www.eeworm.com/read/162609/10291338
c complex.c
/*
2.4 kbps MELP Proposed Federal Standard speech coder
Fixed-point C code, version 1.0
Copyright (c) 1998, Texas Instruments, Inc.
Texas Instruments has intellectual property rights on
www.eeworm.com/read/162609/10291387
h complex.h
/*
2.4 kbps MELP Proposed Federal Standard speech coder
Fixed-point C code, version 1.0
Copyright (c) 1998, Texas Instruments, Inc.
Texas Instruments has intellectual property rights on
www.eeworm.com/read/426022/10293684
java complex.java
class complex1{
double x,y;
complex1(double a,double b){x=a;y=b;}
}
public class Complex {
public static void main(String[] args)
{
complex1 num1=new complex1(2,9);
complex1 num2=new
www.eeworm.com/read/354492/10350239
c complex.c
#include
#include
inline complex< double >&
operator+=( complex< double > &c, double dval )
{
return c += complex< double >( dval );
}
inline complex< double >&
www.eeworm.com/read/280060/10357757
h complex.h
/* complex.h
Complex Number Library - Include File
class complex: declarations for complex numbers.
Copyright (c) 1990, 1992 by Borland International
All Rights Reserved.
A
www.eeworm.com/read/354066/10392572
h complex.h
/* complex.h
Complex Number Library - Include File
class complex: declarations for complex numbers.
Copyright (c) 1990, 1992 by Borland International
All Rights Reserved.
A
www.eeworm.com/read/279631/10409694
java complex.java
/*
* Complex
*
* Performs complex number operation and coordinate transform.
*
* Meirong He
* EEE Department
* University of Sheffield
* July 2005
*/
public class Complex {
d