代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/275330/10823491
h ifstypes.h
/*
* types.h: define a structure used for setting data type.
*/
typedef struct
{
char * name; /* The name for this data type. */
int size; /* The 'sizeof' this data type. */
www.eeworm.com/read/419595/10856360
c maryuwa.c
#include
#include
#include
#include "msp.h"
void maryuwa(complex x[],complex a[],complex r[],int n,int ip,
float *ep,int *ierror)
{
/*-----------------------------
www.eeworm.com/read/348903/10860948
c cfft.c
/*
** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com
**
** This program is free software; you can redistribut
www.eeworm.com/read/348710/10871695
h fretrans.h
// FreTrans.h
#ifndef _INC_FreTransAPI
#define _INC_FreTransAPI
#include
using namespace std;
// 函数原型
VOID WINAPI FFT(complex * TD, complex * FD, int r);
VOID
www.eeworm.com/read/348710/10871696
h fretrans.h
// FreTrans.h
#ifndef _INC_FreTransAPI
#define _INC_FreTransAPI
#include
using namespace std;
// 函数原型
VOID WINAPI FFT(complex * TD, complex * FD, int r);
VOID
www.eeworm.com/read/272625/10951618
h transform.h
//Transform.h 数学变换头文件
// Ver 1.0.0.0
// 版权所有(C) 何渝, 2002
// 最后修改: 2002.5.31.
#ifndef _TRANSFORM_H //避免多次编译
#define _TRANSFORM_H
#include //模板类输入输出流标准头文件
#include
www.eeworm.com/read/272513/10955042
h harwell_boeing_stream.h
// -*- c++ -*-
//
// Copyright 1997, 1998, 1999 University of Notre Dame.
// Authors: Andrew Lumsdaine, Jeremy G. Siek, Lie-Quan Lee
//
// This file is part of the Matrix Template Library
//
// You sh
www.eeworm.com/read/272513/10955082
h matrix_market_stream.h
// -*- c++ -*-
//
// Copyright 1997, 1998, 1999 University of Notre Dame.
// Authors: Andrew Lumsdaine, Jeremy G. Siek, Lie-Quan Lee
//
// This file is part of the Matrix Template Library
//
// You sh
www.eeworm.com/read/417485/10987887
m test_regn2.m
clc;
clear all;
close all;
a=2;
noofdata=64;
noofblock=2;
nooftaps=64;
qpskdata=complex(randn(noofblock,noofdata),randn(noofblock,noofdata));
s1=qpskdata(1,:);
s2=qpskdata(2,:);
qpskdata=r
www.eeworm.com/read/417378/10992229
h fft.h
#ifndef _FFT_H
#include
#define pi 3.14159265
typedef struct
{
double r, i;
} complex;
void fft(int n, complex *a);
#endif