-
bagPSO
matlab 用PSO 解决背包问题 (matlab solve the knapsack problem with PSO)
- 2010-10-20 19:35:06下载
- 积分:1
-
CoefsMel
This sourcecode extracts de melcepstrum coefficient of an audio file. You should give to de function, the audio file save as a vector, and the function returns a vector with 23 melcepstrum coefficients.
- 2010-05-11 16:03:34下载
- 积分:1
-
TSP-matlab
这个是TSP问题的matlab程序求解,请过目!(the TSP is the procedure for Matlab, please read!)
- 2006-10-23 20:15:32下载
- 积分:1
-
IntegrateExample1
积分计算实例,二维积分-体积,计算二维曲面面积。(Calculated two-dimensional surface area)
- 2013-04-21 07:08:09下载
- 积分:1
-
PID_C
Digital version of Fractional-Order PID Controller (DFOC) of the form:
C(s) = K + Ti/s^m + Td*s^d for given sampling period Ts [sec].
For more details and help write:
>> help DFOC
- 2015-02-14 21:53:45下载
- 积分:1
-
mymultisvm
自己编写的svm多分类1对1的程序,如果有错误,请帮忙改正(I have written more than svm classification procedure 1 to 1, if there is an error, please help correct)
- 2013-11-24 11:09:57下载
- 积分:1
-
Encoder
used to encrypt the input image using RAS algorithm
- 2012-11-25 22:32:07下载
- 积分:1
-
多材料热接触的传热分析
说明: 基于ANSYS的多材料热接触的传热分析的命令流(Command Flow for Heat Transfer Analysis of Multi-material Thermal Contact Based on ANSYS)
- 2020-06-16 19:40:01下载
- 积分:1
-
susan
自己写的两种susan边缘检测算子。能够较好的实现弱边缘的精确检测。(Susan wrote their own edge detection operator. Better able to accurately detect the weak edge.)
- 2010-09-28 14:47:40下载
- 积分: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