代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/220657/14794208
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/220657/14794225
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/120429/14803794
java complex.java
// Page 64
public final class Complex {
private final float re;
private final float im;
public Complex(float re, float im) {
this.re = re;
this.im = im;
}
www.eeworm.com/read/120429/14803795
java complex.java
// Static factory version of complex class - Page 68
public class Complex {
private final float re;
private final float im;
private Complex(float re, float im) {
this.re = r
www.eeworm.com/read/120385/14804510
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/120275/14808071
cpp complex.cpp
// Complex.cpp: implementation of the CComplex class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Complex.h"
#ifdef _DEBUG
#undef
www.eeworm.com/read/120275/14808083
h complex.h
// Complex.h: interface for the CComplex class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_COMPLEX_H__774B1FF0_7414_490F_AB45_53B7AD4EF228__INCLUDE
www.eeworm.com/read/119273/14834892
h complex.h
/* complex.h
Complex Number Library - Include File
class complex: declarations for complex numbers.
Copyright (c) 1990, 1991 by Borland International
All Rights Reserved.
A
www.eeworm.com/read/217333/14968939
ncb complex.ncb
www.eeworm.com/read/217333/14968940