代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/191729/5163211
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/191729/5163212
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/191729/5163280
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/191729/5163281
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/191080/5167960
c complex.c
/* CAUTION: This is the traditional K&R 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 s
www.eeworm.com/read/191080/5168572
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/191080/5168807
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/191080/5168814
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/190666/5181962
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/185070/5242340
cs complex.cs
using System;
namespace FFT
{
///
/// Summary description for Complex.
///
public class Complex
{
float real;
float imag;
//----------------------------