代码搜索:complex

找到约 10,000 项符合「complex」的源代码

代码结果 10,000
www.eeworm.com/read/167185/5463556

c is_complex.c

/* * This material contains proprietary software of Entropic Speech, Inc. Any * reproduction, distribution, or publication without the the prior * written permission of Entropic Speech, Inc. i
www.eeworm.com/read/167185/5465997

h complex.h

/* * This material contains unpublished, proprietary software of * Entropic Research Laboratory, Inc. Any reproduction, distribution, * or publication of this work must be authorized in writing
www.eeworm.com/read/163883/5506843

h complex.h

/* * Copyright (c) 1999 * Boris Fomitchev * * This material is provided "as is", with absolutely no warranty expressed * or implied. Any use is at your own risk. * * Permission to use o
www.eeworm.com/read/340665/3269564

h complex.h

/* Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it un
www.eeworm.com/read/340665/3283694

h complex.h

// Copyright (C) 2000 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms
www.eeworm.com/read/339800/3294677

h complex.h

// -*- C++ -*- backward compatiblity header. // Copyright (C) 1994 Free Software Foundation #ifndef __COMPLEX_H__ #include #endif
www.eeworm.com/read/338759/3313045

cc complex.cc

/*************************************************************************** * blitz/array/complex.cc Special functions for complex arrays * * Copyright (C) 1997-2001 Todd Veldhuizen
www.eeworm.com/read/334276/3369559

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/326711/3469912

cpp complex.cpp

// Fig. 22.20: Complex.cpp // Complex class member-function definitions. #include using std::cout; #include "Complex.h" // Complex class definition // Constructor Complex::Complex
www.eeworm.com/read/326711/3469913

h complex.h

// Fig. 22.19: Complex.h // Complex class definition. #ifndef COMPLEX_H #define COMPLEX_H class Complex { public: Complex( double = 0.0, double = 0.0 ); // constructor Complex operator