-
quanzhuyuan
全选主元消元法解方程组,通过测试,可以自己修改方程组(Select principal component elimination method solution of equations)
- 2009-11-17 14:40:51下载
- 积分:1
-
matlabbiancheng
过这个程序,可以更加深入的了解FIR滤波是如何实现的。用AVR单片机 ATMEGA16L实现32阶FIR低通滤波器设计,低通截止频率为200HZ。原始信号经过AD采集后进行FIR运算,处理好的数据通过串口输出。(About this program, a more in-depth understanding of the FIR filter is how to achieve. The 32-order FIR low-pass filter design, low-pass cut-off frequency AVR microcontroller ATMEGA16L 200HZ. The original signal after AD collection, the FIR computation, the output of the processed data through the serial port.)
- 2012-11-21 20:00:37下载
- 积分:1
-
wknn
matlab环境下wknn算法实现,自用于室内定位(wknn algorithm in matlab environment)
- 2015-11-25 18:11:23下载
- 积分:1
-
SYNTH_train
matlab实现的用fisher方法进行分类的任务(achieved using Matlab fisher method for classifying tasks)
- 2006-12-23 12:05:21下载
- 积分:1
-
data-fangzhen
数据归一化的仿真,利用matlab实现,很好的例子啊 课件描述加数据(The normalized simulation using matlab to achieve good example courseware description plus data)
- 2012-05-27 22:34:28下载
- 积分:1
-
fdd-LINK
FDD链路的仿真使用的是KA波段,其中在接收端涉及到多种算法(位同步算法,DD算法等)(FDD link simulation using KA band)
- 2013-07-23 11:05:01下载
- 积分:1
-
freqresponse
digital signal processing
***use interpolation file along with fft.rar file
- 2010-09-01 22:59:29下载
- 积分:1
-
histogram-matching
histogram maching for image processing
- 2011-12-07 22:43:51下载
- 积分:1
-
GA_PSO
利用GA來模擬鳥群尋找食物的行為,方法就是找尋距離食物最近的鳥之周圍區域及根據自己本身飛行的經驗判斷食物的所在(The use of GA to simulate the behavior of the flock in search of food, the methodology is to find the nearest bird food from around the region and according to their own experience of flying to judge the location of food)
- 2010-01-16 00:26:54下载
- 积分:1
-
src
How to use the ordinary Voronoi partition generator. The m-files also have
their own help documentation that you can view in Matlab. This code creates
a bounding polygon that is a square. Then it randomly creates 10 points
and then creates and draws the partition.
bounds = [0, 10, 10, 0 0, 0, 10, 10]
points = 10 * rand(2, 10)
regions = voronoi(bounds, points)
drawRegions(bounds, regions)
================================
This is a brief set of instructions on how to use the Multiplicatively-
weighted Voronoi partition generator.
Each of the m-files has a help section, so in Matlab you can call:
help mwvoronoi
help drawRegions
Here is an example that creates a bounding polygon, a square with side
length 10. Then it randomly creates six points with random weights.
Finally, the code draws the resulting partition.
bounds = [0, 10, 10, 0 0, 0, 10, 10]
points = 10 * rand(3, 6)
regions = mwvoronoi(bounds, points)
drawRegions(bounds, regions)
Enjoy!
- 2013-10-30 12:23:18下载
- 积分:1