登录
首页 » matlab » MATLAB7.x_DSP

MATLAB7.x_DSP

于 2008-12-19 发布 文件大小:165KB
0 200
下载积分: 1 下载次数: 3

代码说明:

  MATLAB的程序, 是DSP(数学信号处理)的光盘, 里面有很多程序的源代码。 请有心人好好学习吧(MATLAB procedures, is DSP (mathematical signal processing) of the discs, there are a lot of program s source code. Please people can learn from it)

文件列表:

MATLAB7.x数字信号处理 光盘内容
..............................\code
..............................\....\chap01
..............................\....\......\ex1_1.m
..............................\....\......\ex1_10.m
..............................\....\......\ex1_11.m
..............................\....\......\ex1_12.m
..............................\....\......\ex1_13.m
..............................\....\......\ex1_2.m
..............................\....\......\ex1_3.m
..............................\....\......\ex1_4.m
..............................\....\......\ex1_5.m
..............................\....\......\ex1_6.m
..............................\....\......\ex1_7.m
..............................\....\......\ex1_8.m
..............................\....\......\ex1_9.m
..............................\....\chap02
..............................\....\......\ex2_1.m
..............................\....\......\ex2_2.m
..............................\....\......\ex2_3.m
..............................\....\......\ex2_4.m
..............................\....\......\ex2_5.m
..............................\....\chap03
..............................\....\......\ex3_2.m
..............................\....\......\ex3_3.m
..............................\....\......\ex3_4.m
..............................\....\......\ex3_5.m
..............................\....\......\ex3_6.m
..............................\....\......\ex3_7.m
..............................\....\......\ex3_8.m
..............................\....\chap04
..............................\....\......\ex4_10.M
..............................\....\......\ex4_11.M
..............................\....\......\ex4_12.M
..............................\....\......\ex4_13.M
..............................\....\......\ex4_14.M
..............................\....\......\ex4_15.M
..............................\....\......\ex4_17.M
..............................\....\......\ex4_18.M
..............................\....\......\ex4_19.M
..............................\....\......\ex4_2.M
..............................\....\......\ex4_20.M
..............................\....\......\ex4_3.M
..............................\....\......\ex4_4.M
..............................\....\......\ex4_5.M
..............................\....\......\ex4_7.M
..............................\....\......\ex4_8.M
..............................\....\......\ex4_9.M
..............................\....\chap05
..............................\....\......\ex5_1.m
..............................\....\......\ex5_11.m
..............................\....\......\ex5_12.m
..............................\....\......\ex5_13.m
..............................\....\......\ex5_14.m
..............................\....\......\ex5_15.m
..............................\....\......\ex5_16.m
..............................\....\......\ex5_17.m
..............................\....\......\ex5_18.m
..............................\....\......\ex5_19.m
..............................\....\......\ex5_2.m
..............................\....\......\ex5_20.m
..............................\....\......\ex5_21.m
..............................\....\......\ex5_22.m
..............................\....\......\ex5_3.m
..............................\....\......\ex5_4.m
..............................\....\......\ex5_5.m
..............................\....\......\ex5_6.m
..............................\....\......\ex5_7.m
..............................\....\......\ex5_8.m
..............................\....\......\ex5_9.m
..............................\....\chap06
..............................\....\......\ex6_34.m
..............................\....\......\ex6_35.m
..............................\....\......\ex6_36.m
..............................\....\......\ex6_37.m
..............................\....\......\ex6_38.m
..............................\....\......\ex6_39.m
..............................\....\......\ex6_40.m
..............................\....\......\ex6_41.m
..............................\....\......\ex6_42.m
..............................\....\......\ex6_43.m
..............................\....\......\ex6_44.m
..............................\....\......\ex6_45.m
..............................\....\......\ex6_46.m
..............................\....\......\ex6_47.m
..............................\....\......\ex6_48.m
..............................\....\chap08
..............................\....\......\main.m
..............................\....\......\proclpc.m
..............................\....\......\speechcoder1.m
..............................\....\......\speechcoder2.m
..............................\....\......\synlpc.m
..............................\....\......\synlpc2.m
..............................\....\chap09
..............................\....\......\ex9_1.m
..............................\....\......\ex9_10.m
..............................\....\......\ex9_11.m
..............................\....\......\ex9_12.asv
..............................\....\......\ex9_12.m
..............................\....\......\ex9_13.m

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • algrithem_database
    利用Matlab做的各种波束形成的界面程序(Interface program to use Matlab to do a variety of beamforming)
    2012-04-23 20:52:27下载
    积分:1
  • EvaluateReversePolishNotation
    Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are +, -, *, /. Each operand may be an integer or another expression. Some examples: [ 2 , 1 , + , 3 , * ] -> ((2 + 1) * 3) -> 9 [ 4 , 13 , 5 , / , + ] -> (4 + (13 / 5)) -> 6 分析:这一题就是写程序计算逆波兰式的结果,遍历表达式,碰到操作数入栈,碰到操作符就从栈顶取出两个操作数,再将计算后的结果入栈,最后栈中剩余的唯一操作数就是计算结果。(. Evaluate the value of an arithmetic expression in Reverse Polish Notation Valid operators are+,-,*,/Each operand may be an integer or another expression Some examples:.. [" 2" , " 1" , " +" , " 3 " ," * " ]-> ((2+ 1)* 3)-> 9 [" 4 " ," 13 " ," 5 " ," /" ," + " ]-> (4+ (13/After this problem is to write a program to calculate the inverse Polish results, iterate expression operand stack encounter, encounter operator to fetch two operands the stack, and then calculated as follows:> 6 Analysis- 5)) The results of the stack, the only remaining operand stack is the final calculations.)
    2015-03-15 23:06:09下载
    积分:1
  • 19395
    A Neural Network Autoassociator for Induction Motor Failure Prediction
    2010-08-03 15:15:39下载
    积分:1
  • mywigner
    该程序是计算二维wigner分布的复杂函数 Calculates the 2D Wigner distribution of a complex function. (The program is to calculate the distribution of two-dimensional wigner complex function Calculates the 2D Wigner distribution of a complex function.)
    2009-10-18 10:09:30下载
    积分:1
  • junhenhua
    对人脸的均衡化处理,效果很好,能够得到一些系数(Face of the balance of handling, well, a number of factors can be)
    2009-05-01 10:32:01下载
    积分:1
  • MATLAB
    说明:  这是一个MATLAB中文工具箱,提供了很多有用的,MATLAB自身没有的数学建模的源码,例如:数据拟合,微积分和微分方程,随机模拟和统计分析,数学规划,离散优化等,并有中文的注释。非常好!(This is a MATLAB toolbox Chinese, providing a lot of useful, MATLAB does not own the source of mathematical modeling, such as: data fitting, calculus and differential equations, stochastic simulation and statistical analysis, mathematical programming, discrete optimization, Notes and Chinese. Very good!)
    2009-08-23 15:19:51下载
    积分:1
  • suijizikongjian
    随机子空间的matlab主程序代码,可以实现高精度的信号辨识。按照《基于随机子空间和最小二乘法的介质损耗角测量方法》、常军博士论文《随机子空间方法在桥梁模态参数辨识中的应用研究》编写。(Stochastic subspace matlab main code, you can achieve high-precision recognition. Accordance with the " stochastic subspace-based least-squares method and dielectric loss angle measurement methods" , regular army doctoral thesis " stochastic subspace identification of modal parameters of the bridge in the applied research" to write.)
    2021-05-08 23:28:40下载
    积分:1
  • tracking-geta
    一篇关于数据关联性能评价的优化跟踪门算法,发表于电子学报,文章还是不错的(An article about optimized gate on multi-target tracking in the journal of electronic, very good!)
    2014-11-29 15:20:15下载
    积分:1
  • Distance
    基于RSSI的测距定位算法,可以直接自己写demo然后进行测试,十分的方便(RSSI-based distance positioning algorithm can write your own demo and then test, very convenient)
    2015-01-13 14:55:01下载
    积分:1
  • dsb
    DSB双边带调制,相干解调和包络检波的对比,以及信号输出的频谱(DSB Double Sideband modulation, coherent demodulation and envelope detection of the contrast, and the signal output spectrum)
    2010-05-26 10:56:31下载
    积分:1
  • 696518资源总数
  • 105877会员总数
  • 14今日下载