代码搜索:如何学习 Fir?
找到约 10,000 项符合「如何学习 Fir?」的源代码
代码结果 10,000
www.eeworm.com/read/278816/10504391
txt kdiff.m.txt
% 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/160574/10517686
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/352501/10546002
c adaptpredict_pcm.c
//Adaptpredict_pcm.c Adaptive predictor to cancel interference
#define beta 1E-13 //rate of convergence
#define N 60 //# of coefficients of adapt FIR
#
www.eeworm.com/read/352501/10546046
log cc_build_debug.log
---------------------------- FIR4ways.pjt - Debug ----------------------------
"C:\TI\C6000\CGTOOLS\BIN\cl6x" -g -k -q -o3 -fr"C:/ti/myprojects/FIR4ways" -@"Debug.lkf" "c6xdskinit.c"
[c6xdskinit.c
www.eeworm.com/read/352500/10546963
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/277959/10590700
m dir2fs.m
function [C,B,A]=dir2fs(h);
%变h(n)值形式为频率取样形式
%[C,B,A]=dir2fs(h)
%C=并联部分的增益列向量
%B=按列排列的分子系数
%A=按列排列的分母系数
%h=FIR滤波器的冲激响应
%计算FIR滤波器冲激响应的频率采样
M=length(h);
H=fft(h,M);
magH=abs(H);
phaH=angle(
www.eeworm.com/read/277959/10590706
m dir2latc.m
function [K]=dir2latc(b)
%[K]=dir2latc(b);
%K=格型滤波器的系数矩阵
%b=FIR滤波器的直接形式系数矩阵
M=length(b);
K=zeros(1,M);
b1=b(1);
if b1==0
error('b(1) is equal to zero')
end
K(1)=b1;A=b/b1;
for m=M:-1:2
www.eeworm.com/read/159418/10651067
log cc_build_custom.log
---------------------------- firlab.pjt - Custom ----------------------------
"d:\ti\c5400\cgtools\bin\cl500" -g -as -i"D:/ti/myprojects/FIR/include" -@"Custom.lkf" "C5402vec.asm"
"d:\ti\c5400\c
www.eeworm.com/read/277188/10655392
makefile
################################################################################
#
#
# Copyright (c) 1995,2000 TriMedia Technologies Inc.
#
# This sample makefile demonstrates the different stages
www.eeworm.com/read/277188/10655401
cmds
#!/bin/csh
set verbose
tmcc -p fir1.c -o fir1.out
tmsim -nomm fir1.out
tmcc -r fir1.c -o fir1.out
tmsize fir1.out
tmsim -statfile fir1.stat fir1.out
tmprof fir1.stat fir1.out -scale 1 -func
tmcc