-
matlabAPI
matlab应用程序接口,电子文档,有用到的可以借鉴一下(Application Programming Interface matlab, electronic documents, can be useful to learn from you)
- 2009-06-21 17:57:08下载
- 积分:1
-
Vsupply
interconnect system parameter variation
- 2013-08-21 04:11:31下载
- 积分:1
-
test06
制件单摆动画,由matlab制作出来的,单个动画,摆动(single pendulum,use matlab)
- 2010-06-28 17:44:29下载
- 积分:1
-
matlab-odev
fuuzy logic examle matlab sı vı seviyesi
kontrolu
- 2012-03-25 20:56:11下载
- 积分:1
-
pso
particle swarm optimization algorithm
- 2013-02-25 15:12:22下载
- 积分:1
-
median-filter-matlab-source-code
matlab中值滤波源代码,对于图像处理的人员有一定的参考意义。。(median filter matlab source code for image processing personnel have some reference value. .)
- 2013-12-11 15:16:58下载
- 积分:1
-
unified-chaotic-systems
分数阶的混沌代码,很不错的一个基于matlab的程序,欢迎下载(Fractional order of unified chaotic systems,a very good based on the matlab program,welcome to download)
- 2011-07-06 12:00:48下载
- 积分:1
-
The-holographic-principle
《机械故障的全息诊断原理》一书的源代码,有数据,matlab代码,具体可参考原书章节介绍。(" Mechanical failure holographic diagnostic principle" a book source code, data, matlab code, specific reference to the original book chapters introduce.)
- 2020-11-25 09:39:32下载
- 积分:1
-
KL100
K-L特征压缩器的原理是利用K-L变换的优良性质,即K-L变换可消除原向量各分量间的相关性。(KL compressor characteristic is the use of KL transform the principle of good nature, that the original vector of KL Transform to eliminate the correlation between the various components.)
- 2009-11-23 10:35:15下载
- 积分: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