代码搜索:如何学习 Fir?
找到约 10,000 项符合「如何学习 Fir?」的源代码
代码结果 10,000
www.eeworm.com/read/473837/6842015
txt fir滤波器设计程序.txt
设计一个FIR低通滤波器,其设计参数:滤波器阶数问40,截止频率为W=0.35π,W2=0.4π。
其MATLAB函数为:
f=[0 0.35 0.4 1]
m=[1 1 0 0]
b=fir2(39,f,m)
汇编源程序为:
.title "fir.asm"
.mmregs
www.eeworm.com/read/192685/8366779
txt 如何在vb6.0中如何调用matlab中的数学函数库.txt
如 果 你 不 会 使 用 VC++, 可 以 通 过 ActiveX技 术 调 用 MATLAB( 机 器 中 必 须 安 装 有 MATLAB) 。 在 Matlab的 文 档 apiguide.pdf中 第 7章 有 详 细 的 介 绍 并 提 供 了 例 子 。
www.eeworm.com/read/168662/9902617
doc 如何把pdf格式转换成word和如何修改pdf格式文件.doc
www.eeworm.com/read/242302/13081115
txt 如何在vb6.0中如何调用matlab中的数学函数库.txt
如 果 你 不 会 使 用 VC++, 可 以 通 过 ActiveX技 术 调 用 MATLAB( 机 器 中 必 须 安 装 有 MATLAB) 。 在 Matlab的 文 档 apiguide.pdf中 第 7章 有 详 细 的 介 绍 并 提 供 了 例 子 。
www.eeworm.com/read/252270/12290641
txt 回复请问如何设置linux为邮件服务器,具体配置如何.请详解.txt
作者:mild
email: w_m@263.net
日期:99-12-7 上午 01:19:18
BBS水木清华站∶精华区
发信人: scaner (P.o.t.S), 信区: Linux
标 题: Sendmail Enable RELAY mini Howto
发信站: BBS 水木清华站 (Fri Dec 11 23:12:59 1998)
本文主要是解决高版本
www.eeworm.com/read/114100/15113346
txt 如何在vb6.0中如何调用matlab中的数学函数库.txt
如 果 你 不 会 使 用 VC++, 可 以 通 过 ActiveX技 术 调 用 MATLAB( 机 器 中 必 须 安 装 有 MATLAB) 。 在 Matlab的 文 档 apiguide.pdf中 第 7章 有 详 细 的 介 绍 并 提 供 了 例 子 。
www.eeworm.com/read/391780/8377310
m ms24_5_1.m
%FIR高通滤波器
f=[0,0.5,0.5,1]; %建立理想幅频特性频率向量
m=[0,0,1,1]; %建立理想幅频特性幅度向量
N=41;
%windows=boxcar(N); %使用三角形窗
%b=fir2(N-1,f,m,windows);%
b=fir2(N-1,f,m);%
[h,w]=fre
www.eeworm.com/read/291895/8389178
txt readme.txt
multirate_algs 1.3
multirate_algs is a free and open collection of algorithms for implementing
multirate Finite Impulse Response (FIR) filters in C. It is provided w
www.eeworm.com/read/391249/8414167
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/391151/8418959
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
#