代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/352327/10563601
c accuracy.c
#include "utils.h"
#include "nfft.h"
void accuracy(int d)
{
int j,k,t,m;
nfft_plan my_plan;
fftw_complex *slow;
int N[d],n[d];
int M;
M=10000;
www.eeworm.com/read/422532/10631434
tdf decode.tdf
TITLE "Complex AHDL decoder";
SUBDESIGN decode
(
a, b, c, d, clock : INPUT;
out1, out2, out1l : OUTPUT;
)
VARIABLE
out1d : DFF;
BEGIN
out1d.clk = clock;
out1d = out1;
www.eeworm.com/read/276643/10720992
c mandelbrot.c
/*
原理:
1. 使用叠代公式:
z[0] = zInit;
z[k] = z[k-1]*z[k-1] + z[0]
其中z[i]是复数,要使用复数的运算法则。
2. Mandelbort图形集的初始化要求
-2.25
www.eeworm.com/read/453341/6952146
h nmeastring.h
/**************************************************************************/
/* */
/* Copyright (c) 2000-2008 YULONG Company
www.eeworm.com/read/466103/7044576
h fft.h
//fft.h complex FFT function taken from Rulph's C31 book
//this file contains definition of complex dat structure also
struct cmpx //complex data structure used by FFT
{
www.eeworm.com/read/255967/7098256
c cemdc2.c
/*
* G. Rilling, last modification: 3.2007
* gabriel.rilling@ens-lyon.fr
*
* code based on a student project by T. Boustane and G. Quellec, 11.03.2004
* supervised by P. Chainais (ISIMA - LIMOS - Univ
www.eeworm.com/read/255967/7098259
c cemdc.c
/*
* G. Rilling, last modification: 3.2007
* gabriel.rilling@ens-lyon.fr
*
* code based on a student project by T. Boustane and G. Quellec, 11.03.2004
* supervised by P. Chainais (ISIMA - LIMOS - Univ
www.eeworm.com/read/462581/7200156
m make_rp.m
rp.TNRdB = 10; % TNR in dB
rp.INRdB = 20; % INR in dB
rp.Nsnaps = 200;
rp.mu = 1e-9;
rp.p = 5;
rp.decay = 0;
rp.verbose = 0;
rp.mean_v = 0; % mean of complex-valued AWGN
www.eeworm.com/read/461262/7230956
v cmult.v
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 20:54:05 08/30/2007
// Design Name:
/
www.eeworm.com/read/456497/7347777
h real.h
// Real.h: interface for the Real class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_REAL_H__21F45686_4257_4E66_AEC1_7FEE62BFE453__INCLUDED_)
#defi