代码搜索:如何学习 Fir?
找到约 10,000 项符合「如何学习 Fir?」的源代码
代码结果 10,000
www.eeworm.com/read/404153/11490980
txt index of chapter5.txt
Example 5 - 1. Single-Precision Complex FIR Filter C Listing
Example 5 - 2. FIR ASM Listing for the TMS320C2x DSP
Example 5 - 3. FIR Filter Based on MAC Instruction for the TMS320C54x DSP
Example 5
www.eeworm.com/read/158371/11622735
c twocross.c
/* file : twocross.c
*
* purpose : implemnet of two-point crossover
*
*/
#include
#include
#include
void
twocross(Kid1,Kid2,len)
int len; /* t
www.eeworm.com/read/157491/11699275
m meizaosheng.m
clear,clc,clf;
t=0:10^(-9):0.04*10^(-4);
N=length(t);
lamde=0.03;
Pj=50;
Lj=7;
Lr=10;
Br=2*10^6;
Bj=10*10^6;
mae=1/3;
U0=sqrt(2*Pj/(mae^2+1));
Gj=13;
Ga=sinc(0.3-0.15)+sinc(0.3+0.15);
Gb=
www.eeworm.com/read/346674/11733281
c twocross.c
/* file : twocross.c
*
* purpose : implemnet of two-point crossover
*
*/
#include
#include
#include
void
twocross(Kid1,Kid2,len)
int len; /* t
www.eeworm.com/read/259816/11763374
mak tasm.mak
/************* Code Composer V1 Project Data ********************
The following section contains data generated by Code Composer
to store project information like build options, source filenames
www.eeworm.com/read/345944/11778427
c twocross.c
/* file : twocross.c
*
* purpose : implemnet of two-point crossover
*
*/
#include
#include
#include
void
twocross(Kid1,Kid2,len)
int len; /* t
www.eeworm.com/read/345225/11825293
asm lab5.asm
**********************************************
* LENGTH-80 LINEAR-PHASE PASSBAND FIR FILTER *
**********************************************
.title "lab5.asm"
.mmreg
www.eeworm.com/read/344535/11873872
mdl fmtransdemod.mdl
Model {
Name "fmtransdemod"
Version 3.00
SimParamPage "Solver"
SampleTimeColors off
InvariantConstants off
WideVectorLines off
ShowLineWidths off
ShowPortData
www.eeworm.com/read/155166/11892807
m kdiff.m
% kdiff.m - lowpass FIR differentiator design using Kaiser window.
%
% h = kdiff(fs, fc, Df, A)
%
% fc = cutoff frequency in [Hz]
% Df = transition width in [Hz]
% A = stopband ripple attenuation in [
www.eeworm.com/read/343634/11937850
m zzremez.m
%利用Remez并用奇对称FIR滤波器设计一个近似的Hilbert变换器
b1=remez(21,[0.05 1],[1 1],'h'); %奇数阶线性相位FIR滤波器——高通Hilbert
b2=remez(20,[0.05 1],[1 1],'h'); %偶数阶线性相位FIR滤波器——带通Hilbert
[H1,W1]=freqz(b1,1,512,2);