代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/288910/8595666
cpp complex.cpp
#include
#include
//#include
using namespace std;
inline complex< double >&
operator+=( complex< double > &c, double dval )
{
return c += complex< double
www.eeworm.com/read/187840/8596685
java complex.java
//Below is the syntax highlighted version of Complex.java from §3.2 Creating Data Types.
/*************************************************************************
* Compilation: javac Complex.
www.eeworm.com/read/287520/8684262
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/386856/8723201
cpp complex.cpp
#include "stdafx.h"
ComplexNumber ComplexMultiply(ComplexNumber x, ComplexNumber y)
//
// Copyright 2002 The Mobile and Portable Radio Research Group
//
{
ComplexNumber Result;
Result.rea
www.eeworm.com/read/386856/8723272
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/384965/8827224
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/384084/8900565
cpp complex.cpp
// Complex.cpp: implementation of the Complex class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Complex.h"
#include
www.eeworm.com/read/384084/8900576
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/186865/8900740
skn complex.skn
www.eeworm.com/read/427960/8908948
cpp complex.cpp
#include "complex.h"
#include
using namespace std;
BOOL Complex::iszero() const
{ if (x.iszero() && y.iszero()) return TRUE; return FALSE; }
Complex& Complex::operator=(const Com