-
matlab
MATLAB实现数字FIR的高通_和带通等滤波器的源程序(MATLAB implementation of digital FIR high-pass and band-pass filters _ source program)
- 2012-01-04 10:44:13下载
- 积分:1
-
norm2huff
实现哈弗曼压缩编码的matlab程序。(m文件)(Huffman code)
- 2009-07-02 10:16:41下载
- 积分:1
-
bayes_classifier
在matlab环境下的一个朴素贝叶斯分类器,大家可以参考下(Matlab environment a Naive Bayes classifier, we can refer to the following)
- 2012-10-23 10:56:44下载
- 积分:1
-
0123744865
Book - Introduction to pattern recognition : a MATLAB approach - Sergios Theodoridis.
- 2010-08-27 10:45:49下载
- 积分:1
-
matlab
用matlab仿真电梯群控系统的程序,很实用的
(Matlab simulation with the elevator group control system of the program, it is useful)
- 2021-04-21 09:58:49下载
- 积分:1
-
wirecapacitance
说明: 在matlab下,运用矩量法计算长直导线电容,并分析电容随导线长度,半径,分段数的变化(In matlab, Compution of a long straight wire capacitance with MOM
, and analysis of capacitance with the wire length, radius, segment number of changes)
- 2011-04-03 17:57:36下载
- 积分:1
-
Image-filtering
图像滤波与傅里叶变化的matlaba源码(带注释)(Image filtering and Fourier transform of matlaba source code (with comments))
- 2014-11-01 11:09:14下载
- 积分:1
-
Chapter3
北京航空航天出版社matlab从零到进阶的第三章程序(Beijing University of Aeronautics and Astronautics Press matlab from zero to advanced procedures in Chapter III)
- 2014-01-13 10:50:37下载
- 积分:1
-
matlab9
MATLAB函数文档,包括了很多例子,非常好的学习资料(MATLAB function files, including many examples, very good learning materials)
- 2007-04-11 16:13:45下载
- 积分: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