代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/204559/15337146
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/203062/15366791
h complex.h
#ifndef COMPLEX_H
#define COMPLEX_H
#ifdef _MSC_VER
#include
#include
using std::ends;
#else
#include
using namespace std;
#endif
#include
#include
www.eeworm.com/read/200325/15435310
java complex.java
public class Complex
{
public double real;
public double image;
public Complex(double a, double b)
{
this.real = a;
this.image = b;
}
public String toString()
{
return(thi
www.eeworm.com/read/200325/15435313
class complex.class
www.eeworm.com/read/112914/15474646
java complex.java
public class Complex
{
private double m_real;
private double m_image;
Complex(double real,double image)
{
m_real=real;
m_image=image;
}
public double getReal()
{
return m_real;
www.eeworm.com/read/112914/15474648
class complex.class
www.eeworm.com/read/112799/15476511
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/112641/15481151
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/112641/15481165
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/112070/15493905
cpp complex.cpp
// Complex.cpp: implementation of the Complex class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Complex.h"
#include