代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/479224/1334183
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/475809/1381770
c complex.c
#include
typedef struct FCOMPLEX {float r,i;} fcomplex;
#if defined(__STDC__) || defined(ANSI) || defined(NRANSI) /* ANSI */
fcomplex Cadd(fcomplex a, fcomplex b)
{
fcomplex c;
www.eeworm.com/read/475809/1381772
h complex.h
#ifndef _NR_COMPLEX_H_
#define _NR_COMPLEX_H_
#ifndef _FCOMPLEX_DECLARE_T_
typedef struct FCOMPLEX {float r,i;} fcomplex;
#define _FCOMPLEX_DECLARE_T_
#endif /* _FCOMPLEX_DECLARE_T_ */
#if d
www.eeworm.com/read/475809/1381900
c complex.c
/* CAUTION: This is the ANSI C (only) version of the Numerical Recipes
utility file complex.c. Do not confuse this file with the same-named
file complex.c that is supplied in the same subdire
www.eeworm.com/read/474814/1390492
h complex.h
// $Header$
#ifndef complex_h
#define complex_h
#include
//
// Complex types
//
struct complex;
struct dcomplex;
struct complex {
complex() {}
complex( float rv, float iv ) : r(rv)
www.eeworm.com/read/474814/1390498
cc complex.cc
// $Header$
#include
#include "Glish/Complex.h"
#include "Glish/glish.h"
// Defined in "Value.cc".
extern dcomplex text_to_dcomplex( const char text[], int& successful );
complex atocpx(
www.eeworm.com/read/474557/1393489
java complex.java
/***************************************************************************
Complex.java
Written by Nick Efford.
Copyright (c) 2000, Pearson Education Ltd. All rights reserved.
T
www.eeworm.com/read/470693/1467160
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/461961/1548903
h complex.h
// Complex number class
#pragma once
#include
#include "Float.h"
namespace Mathematics
{
/// A complex number.
/// z = Re(z) + i Im(z).
class Complex
{
www.eeworm.com/read/460691/1558055
pm complex.pm
#
# Complex numbers and associated mathematical functions
# -- Raphael Manfredi Since Sep 1996
# -- Jarkko Hietaniemi Since Mar 1997
# -- Daniel S. Lewart Since Sep 1997
#
require Exporter;
p