代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/152278/12125878
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/253867/12180765
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/339151/12254756
c complex.c
/*****************************************************************************/
/* FIle Name : complex.c */
/* Description : utilities for complex
www.eeworm.com/read/252636/12273126
cpp complex.cpp
// Complex.cpp: implementation of the CComplex class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "复数计算器.h"
#include "Complex.h"
#i
www.eeworm.com/read/252636/12273155
h complex.h
// Complex.h: interface for the CComplex class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_COMPLEX_H__A573B149_4184_4FAD_B402_F8AD6FDB028A__INCLUDE
www.eeworm.com/read/252063/12304902
c complex.c
/* Copyright (c) Colorado School of Mines, 2003.*/
/* All rights reserved. */
/*********************** self documentation **********************/
/******************************
www.eeworm.com/read/251927/12311005
cpp complex.cpp
// complex.cpp: implementation of the Ccomplex class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "complex.h"
#ifdef _DEBUG
#undef
www.eeworm.com/read/251927/12311022
h complex.h
// complex.h: interface for the Ccomplex class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_COMPLEX_H__41236102_AA8B_40CB_A7CC_FD54985B60DD__INCLUDE
www.eeworm.com/read/337775/12342095
h complex.h
#if !defined COMPLEX_H
#define COMPLEX_H
//------------------------------------
// complex.h
// Complex number
// (c) Reliable Software, 1996
//------------------------------------
#includ
www.eeworm.com/read/149423/12381765
cs complex.cs
using System;
namespace FFT
{
///
/// Summary description for Complex.
///
public class Complex
{
float real;
float imag;
//----------------------------