代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/207758/15262640
h complex.h
//
// Copyright 2002 The Mobiel and Portable Radio Research Group
//
typedef class ComplexNumbertag
{
public:
double real;
double imaginary;
} ComplexNumber;
ComplexNumber ComplexMult
www.eeworm.com/read/207683/15264785
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/207683/15264796
obj complex.obj
www.eeworm.com/read/207683/15264799
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/207677/15264916
cpp complex.cpp
// complex.cpp: implementation of the Ccomplex class.
//
//////////////////////////////////////////////////////////////////////
#include "complex.h"
#include
#include
///
www.eeworm.com/read/207677/15264919
h complex.h
// complex.h: interface for the Ccomplex class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_COMPLEX_H__BFD9D970_BDA4_49BC_92E4_AB9FB9A85DB8__INCLUDE
www.eeworm.com/read/206291/15297014
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/5587/61807
shx complex.shx
www.eeworm.com/read/5587/63977
ttf complex_.ttf
www.eeworm.com/read/11269/216017