代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/452723/7434131
c complex.c
/************************************************************
Copyright (C), 2007 by SEED Electronic Technology LTD.
FileName: Complex.c
Author: Ya.X Version : V1.0 Date:2007-09
www.eeworm.com/read/452723/7434137
obj complex.obj
www.eeworm.com/read/452307/7442047
h complex.h
#include "iostream"
using namespace std;
struct complex {
int real;
int imag;
};
void input(complex& complex1, complex& complex2) {
cout
www.eeworm.com/read/447645/7548273
java complex.java
package fft;
/**
Complex implements a complex number and defines complex
arithmetic and mathematical functions
Last Updated February 27, 2001
Copyright 1997-2001
@version 1.0
www.eeworm.com/read/446971/7562206
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/446817/7564425
cpp complex.cpp
// complex.cpp - impelementation of class
// of complex number
//
// The code is property of LIBROW
// You can use it on your own
// When utilizing credit LIBROW site
// Include he
www.eeworm.com/read/446817/7564426
h complex.h
// complex.h - declaration of class
// of complex number
//
// The code is property of LIBROW
// You can use it on your own
// When utilizing credit LIBROW site
#ifndef _COMPLEX_H_
www.eeworm.com/read/445412/7595780
h complex.h
/*
* complex.h
*
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Danny Smith
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This so
www.eeworm.com/read/439595/7705340
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