-
bp_test
bp网络训练后的测试,读取已经训练好的bp网络,进行实际应用(bp network training after the test, reading the training has been good bp network for practical application)
- 2007-07-04 09:17:49下载
- 积分:1
-
fmincon
此资料对fmincon优化函数的功能进行了详细的描述,对我们在编程中对优化函数的使用很有帮助。(This information is optimized function fmincon functions were described in detail in our programming for optimizing the use of helpful functions.)
- 2010-07-24 17:26:10下载
- 积分:1
-
UseMatlib
vc与matlab混和编成(vc and the mixture into Matlab)
- 2005-01-11 14:15:11下载
- 积分:1
-
matlab
数字控制系统仿真与综合应用:设控制对象为 W1=10/s(1+0.1s)(1+0.05s),采样周期T=0.2s。
(1)采用零阶保持器,将W1(s)转换成W1(z),串接一个计算机调节模型D(z)组成一个典型的数字反馈系统。分别用仿真方法得到系统在单位阶跃输入作用下的响应和系统在单位速度输入时的输出响应。
(Digital control system simulation and comprehensive application: set control object for W1 = 10/s (1+ 0.1 s) (1+ 0.05 s), the sampling period T = 0.2 s.
(1) the zero order keep device, will W1 (s) convert W1 (z), the combination of a computer adjusting model D (z) composed of a typical digital feedback system. The simulation method were used to get in the unit step input system under the action of response and system in the unit of output response speed input.
)
- 2012-04-19 14:38:25下载
- 积分:1
-
E5_2_LoopDesign
基于matlab的关于通信系统中解调中载波锁相环的设计(On the design of the PLL demodulation in communication system of based on MATLAB)
- 2014-12-08 20:26:17下载
- 积分:1
-
LinearDiscriminantAnalysis
提出了一种新的基于图像分块重构和线性判别分析相融合的方法,主要用于人脸识别。该方法通过计算两幅图像之间图
像块的重构均值误差,运用线性判别分析求出两幅图像降维后的欧式距离,融合重构误差和欧式距离计算这两幅图像之间的差别
程度。(A new block-based image reconstruction and the integration of linear discriminant analysis method is mainly used for face recognition. This method between the two images by calculating the reconstructed image block average error, calculated using the linear discriminant analysis after dimension reduction of two images Euclidean distance, the integration calculation of reconstruction error and the Euclidean distance difference between these two images level.)
- 2010-11-15 15:25:17下载
- 积分:1
-
rotateticklabel
matlab下旋转坐标(label),使它能够以一定的角度显示(rotate tick label)
- 2014-11-26 07:47:06下载
- 积分:1
-
troisglissant_1
Commande par mose glissant de la MSAP
- 2012-04-08 02:04:46下载
- 积分:1
-
Image-Segmentatin-and-Thresholding-Method
This Source Code for Image Segmentation and applying the threshold at image
- 2013-11-03 16:05:10下载
- 积分:1
-
1234435
用matlab 7.0编写的滑模变结构仿真的例子。(S-function for continuous state equation
function [sys,x0,str,ts]=s_function(t,x,u,flag)
switch flag,
Initialization
case 0,
[sys,x0,str,ts]=mdlInitializeSizes
Outputs
case 3,
sys=mdlOutputs(t,x,u)
Unhandled flags
case {2, 4, 9 }
sys = []
Unexpected flags
otherwise
error([ Unhandled flag = ,num2str(flag)])
end
mdlInitializeSizes
function [sys,x0,str,ts]=mdlInitializeSizes
sizes = simsizes
sizes.NumContStates = 0
sizes.NumDiscStates = 0
sizes.NumOutputs = 3
sizes.NumInputs = 1
sizes.DirFeedthrough = 1
sizes.NumSampleTimes = 0
sys=simsizes(sizes)
x0=[]
str=[]
ts=[]
function sys=mdlOutputs(t,x,u)
x11d=sin(pi*t/2)
x21d=cos(pi*t)
x31d=1
sys(1)=x11d
sys(2)=x21d
sys(3)=x31d
)
- 2012-10-19 11:43:12下载
- 积分:1