-
mreg
matlab程序中的部分经典算法,仅供参考(matlab program, part of the classical algorithm for reference only)
- 2009-09-17 09:17:20下载
- 积分: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
-
MIMO-downlink
说明: 基于SLNR准则的MIMO下行链路预编码(SLNR criteria based precoding MIMO downlink)
- 2011-02-28 21:25:24下载
- 积分:1
-
rat
this code is very helpfulful in understanding the basic sterps to create rat algorithm
- 2013-01-22 13:21:57下载
- 积分:1
-
Simple_perceptron_OR
Code implementation of a Simple Perceptron Neural Network that learns the logical OR function with 2 and 4 inputs.
- 2015-03-22 04:29:43下载
- 积分:1
-
KPLS
说明: 基于核函数的偏最小二乘算法,先对原矩阵进行核函数非线性变化,再用非线性迭代求解(Kernel-based partial least-squares algorithm, first the original non-linear function of changes in the nuclear matrix, and then non-linear iterative solution)
- 2021-03-16 11:59:22下载
- 积分:1
-
optimization-problem-in-this-paper
遗传算法对约束优化问题的研究综述,主要是综述约束问题。(Genetic algorithm for constrained optimization problem in this paper, research is mainly summarized constraint problems.
)
- 2013-11-12 22:14:43下载
- 积分:1
-
NNcontrtodemo
neural networks control of dynamic systems
- 2010-11-06 00:23:26下载
- 积分:1
-
multimode-process-detection-matlab
实现多模态过程监测功能,包括数据的预处理,标准化处理等(multimode process detection)
- 2011-09-02 09:49:46下载
- 积分:1
-
proficient-in-Matlab7-Hanselman
详细介绍了matlab7的所有关键特性和功能,提供了精通matlab所需要的所有方法和手段。( All the key features and functions of Matlab7 was introduced in detail, and provides the proficient in matlab need all of the methods and means.)
- 2014-08-26 17:19:35下载
- 积分:1