代码搜索:如何学习 Fir?
找到约 10,000 项符合「如何学习 Fir?」的源代码
代码结果 10,000
www.eeworm.com/read/353048/10475881
out fir.out
www.eeworm.com/read/278816/10504358
c fir.c
/* fir.c - FIR filter in direct form */
double fir(M, h, w, x) /* Usage: y = fir(M, h, w, x); */
double *h, *w, x; /* \(h\) = filter, \(w\) = state, \
www.eeworm.com/read/160574/10517660
obj fir.obj
www.eeworm.com/read/160574/10517675
h fir.h
void Fir(
Word16 *Input, // 原始输入数据
Word16 *Output, // FIR滤波输出结果
Word16 *Fir_Coef, // FIR滤波器系数
Word16 *Fir_Memory, // FIR滤波器状态
Word16 order, // FIR滤波器阶数
Word16 len
www.eeworm.com/read/160574/10517691
c fir.c
#include "typedef.h"
#include "Fir.h"
void Fir(
Word16 *Input, // 原始输入数据
Word16 *Output, // FIR滤波输出结果
Word16 *Fir_Coef, // FIR滤波器系数
Word16 *Fir_Memory, // FIR滤波器状态
W
www.eeworm.com/read/352501/10546213
out fir.out
www.eeworm.com/read/352501/10546219
pjt fir.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="C:\ti\myprojects\Fir\"
ProjectType=Executable
CPUFamily=TMS320C67XX
Tool="Compiler"
www.eeworm.com/read/352501/10546221
c fir.c
//Fir.c FIR filter. Include coefficient file with length N
#include "bs2700.cof" //coefficient file BS @ 2700Hz
int yn = 0; //initialize filter's output
short dly[N];
www.eeworm.com/read/159946/10585056
c fir.c
/* fir.c - FIR filter in direct form */
double fir(M, h, w, x) /* Usage: y = fir(M, h, w, x); */
double *h, *w, x; /* \(h\) = filter, \(w\) = state, \
www.eeworm.com/read/159869/10606187
v fir.v
module fir(clk,x,y);
input[7:0] x;
input clk;
output[15:0] y;
reg[15:0] y;
reg[7:0] tap0,tap1,tap2,tap3,tap4,tap5,tap6,tap7,tap8,tap9,tap10;
reg[7:0] t0,t1,t2,t3,t4,t5;
reg[15:0] sum;
always