-
regression
Regression to find equation from several data given through a survey.
- 2009-12-11 12:55:55下载
- 积分:1
-
matlab-lerning
对MATLAB初学者具有很好的作用,而且容易理解和接受,很管用哦(MATLAB for beginners on the role of good and easy to understand and accept, it is workable oh)
- 2011-06-01 19:47:55下载
- 积分:1
-
prim
matlab版本
图论中的prim算法
一般C版本的比较多,这里提供matlab版本的,更简单方便使用
(Matlab code of prim algorithm in graph theory)
- 2013-11-13 17:52:34下载
- 积分:1
-
zikangrao
演变过程 自抗扰控制器自PID控制器演变过来,采取了PID误差反馈控制的核心理念。传统PID控制直接引取输出于参考输入做差作为控制信号,导致出现响应快速性与超调性的矛盾出现。(In the process of evolution, ADRC evolves from PID controller and adopts the core idea of PID error feedback control. Traditional PID control directly draws the output from the reference input as a control signal, which leads to the contradiction between response speed and overshoot.)
- 2019-01-25 03:38:54下载
- 积分:1
-
matlab
对具有随机噪声的二阶系统的模型辨识,进行标幺化以后系统的参考模型差分方程为
(7.90)
式中, 为随机噪声。由于神经网络的输出最大为1,所以,被辨识的系统应先标幺化,这里标幺化系数为5。利用图7.5正向建模(并联辨识)结构,神经网络选用3-9-9-1型,即输入层i,隐层j包括2级,输出层k的节点个数分别为3、9、9、1个;
(Model identification of two order systems with stochastic noise)
- 2016-07-19 10:39:20下载
- 积分:1
-
yuvcalculate
How to calculate PSNR of a yuv video.
- 2011-05-26 07:01:18下载
- 积分:1
-
extractHOGFeatures
source code to extract HOG feature. HOG feature is a kind of feature in computer vision.
- 2015-03-11 14:39:20下载
- 积分:1
-
sensorless_IPMSM
关于永磁电机的无速度传感器控制,是基于模型参考自适应(it s a mdl project based on matlab.)
- 2014-03-26 10:31:21下载
- 积分:1
-
angle
水平测量中求取一测回水平角的简单程序
可以任意限差(A horizontal angle measured back)
- 2010-05-12 14:42:41下载
- 积分: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