代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/125987/14453110
c doit.c
/* this program is in the public domain
A program that helps the authors of the fine fftw library benchmark kiss
*/
#include "bench-user.h"
#include
#include "kiss_fft.h"
#include "kis
www.eeworm.com/read/124933/14524354
cpp 7_61.cpp
#include
class complex
{
float a,b;
public:
complex(){a=0.0;b=0.0;}
complex(float x,float y) {a=x;b=y;}
void Add(complex& comp1,complex& comp2);
void Sub(complex& comp1,comple
www.eeworm.com/read/124283/14579087
c fft.c
#include
#include
#include
#include
#define REAL(z,i) ((z)[2*(i)])
#define IMAG(z,i) ((z)[2*(i)+1])
int
main (void)
{
int i;
double d
www.eeworm.com/read/124283/14579242
am makefile.am
## Process this file with automake to produce Makefile.in
info_TEXINFOS = gsl-ref.texi
noinst_TEXINFOS = gsl-design.texi
gsl_ref_TEXINFOS = err.texi cblas.texi blas.texi min.texi fft.texi rng.texi ra
www.eeworm.com/read/224579/14582948
h fftwrap.h
/* Copyright (C) 2005 Jean-Marc Valin
File: fftwrap.h
Wrapper for various FFTs
Redistribution and use in source and binary forms, with or without
modification, are permitted provided t
www.eeworm.com/read/124229/14585455
c doit.c
/* this program is in the public domain
A program that helps the authors of the fine fftw library benchmark kiss
*/
#include "bench-user.h"
#include
#include "kiss_fft.h"
#include "kis
www.eeworm.com/read/223481/14639195
m demod2d.m
% Demod2D transforms received symbol values into log-likelihoods
%
% The calling syntax is:
% [output] = Demod2D( input, S_matrix, EsNo, [fade_coef] )
%
% output = M by N matrix of symbol
www.eeworm.com/read/223063/14662243
cpp pgm0a_05.cpp
//
// This file contains the C++ code from Program A.5 of
// "Data Structures and Algorithms
// with Object-Oriented Design Patterns in C++"
// by Bruno R. Preiss.
//
// Copyright (c) 1998
www.eeworm.com/read/223063/14662706
cpp pgm0a_06.cpp
//
// This file contains the C++ code from Program A.6 of
// "Data Structures and Algorithms
// with Object-Oriented Design Patterns in C++"
// by Bruno R. Preiss.
//
// Copyright (c) 1998