搜索资源列表
kftool_matlab10
- kalman滤波的MATLAB程序,递归算法的实现.详细请看介绍.
fft
- 分四种情况实现fft 分别是时间抽取递归 、时间抽取循环、频率抽取递归和频率抽取循环 以及附带dft的算法描述
Turbo.rar
- 实现turbo码的编码和解码,是一个递归卷积码的编解码的程序,Turbo code to achieve the encoding and decoding
Question1
- C++源代码,递归实现。原问题描述:鼓上蚤时迁到一个山洞里去盗宝,里面有n件宝贝,价值分别是a1,a2......an,并且满足ai大于a1+a2+....+a(i-1)的和。他身上有一个背包,能装的东西最大价值是K,他只能进洞一次,请问他最多能带出多少? 要求:输入K,n,a1,a2......an 输出:他能最多带出的宝物价值 -C++ Source code Recursive achieve. The original problem descr iption: drum
recursion
- 递归,是函数实现的一个很重要的环节,很多程序中都或多或少的使用了递归函数。递归的意思就是函数自己调用自己本身,或者在自己函数调用的下级函数中调用自己。 递归之所以能实现,是因为函数的每个执行过程都在栈中有自己的形参和局部变量的拷贝,这些拷贝和函数的其他执行过程毫不相干。这种机制是当代大多数程序设计语言实现子程序结构的基础,是使得递归成为可能。-Recursion, is a function to achieve a very important part of many programs
test1
- 递归实现一个集合的所有的子集的输出。 例如{1,2} 输出{}{1}{2}{1,2}-A subset of the output of recursion
zijiaozheng
- 自适应里面的自校正算法,根据最小二乘递归算法实现自校正控制-Adaptive self-tuning algorithm which, according to the recursive least squares algorithm for adaptive control
lab_3
- 1.分别编写四个同名函数max1,实现函数重载,在main()函数中测试函数的功能 2.使用函数模板实现求任意类型数的最大值,针对不同的参数个数,编写两个同名函数模板max1,其参数个数不同,实现函数重载,在main()函数中测试函数功能 3.编写递归函数int fib(int n),在主程序中输入n的值,调用fib函数计算Fibonacci级数。公式为fib(n-1)+fib(n-2),n>2 fib(1)=fib(2)=1。使用if语句判断函数的出口,在程序中用cout语句中输
DGF
- 用matlab进行编程实现递归法计算三重积分-Matlab programming recursive method for calculating triple integrals
kalman
- 卡尔曼滤波是一种高效率的递归滤波器(自回归滤波器), 它能够从一系列的不完全包含噪声的测量(英文:measurement)中,估计动态系统的状态。本程序实现了基于kalman的目标跟踪。-Kalman filter is an efficient recursive filter (autoregressive filter), it can not completely contain from a series of noise measurements (in English: measu
Turbomat
- 一个实现turbo码的编码和解码,是一个递归卷积码的编解码的程序源码。-A turbo code to achieve the encoding and decoding, is a recursive convolutional encoding and decoding of the program source code.
junheng
- 项目采用matlab对强迫零均衡器、最小均方误差均衡器、自适应线性均衡器进行了编程实现,并给出了计算机的仿真结果以及对仿真结果的分析,最后,给出递归最小二乘准则下的均衡器仿真予以比较。-Forced to zero on the project using matlab equalizer, minimum mean square error equalizer, adaptive linear equalizer is programmed to achieve, and gives the
guihd
- 递归函数调用示例。使用switch case语句实现切换编程回调结构。-Example of a recursive function call. Achieved using the switch case statement to switch programming callback structure.
karman-temperature
- karman测环境温度,递归实现接近真实环境温度-karman temperature
qsort_main
- 采用递归的方法实现快速排序,在MATLAB的环境-fastsort in matlab
TreeByLinking
- Matlab实现 递归算法生成3维分形树 此算法树根在侧面,需对坐标轴进行旋转便可得到上图效果-Matlab recursive algorithms to create the 3-d fractals tree
cl2DESIGNAL-FOR-NOISE
- 用递归迭代法构造多小波基的matlab源码及实现多小波分解2-D图像 [multiwavelet.rar] - 小波变换的MATLAB实现 几个用MATLAB编写的小波变换示例 -multiwavelet.rar]2-D multi-wavelet construction and implementation computation multiwavelet transform an image (BAT O2 multiwavelet transform
Bidirectional-quadtree-in-matlab
- matlab 中实现一个四叉树的结构,使用递归过程,整合成一次二向遍历-secure yourself with a simple quadtree in matlab
递推最小二乘法实现及推广
- 最小二乘递归算法仿真及其推广应用,很好地实现了最小二乘法(Least square recursive algorithm simulation and its popularization and application, the least square method is well realized.)
RLS与LMS算法matlab实现
- 经典的LMS与RLS递归最小二乘算法,有中文注释,很好理解(Classic LMS AND RLS recursive least squares algorithm, Chinese notes, very good understanding.)