-
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
-
matlab编的处理系统SeismicLab
matlab编写的地震处理系统,用于实现地震处理后续的处理,方便在matlab上进行处理。(Seismic processing system written by MATLAB)
- 2019-03-09 15:52:06下载
- 积分:1
-
log4j
log4j的配置文件!可以很好的配置log4j的程序,是一个标准模板(log4j configuration file! Log4j configuration can be a very good program, is a standard template)
- 2009-11-16 17:31:20下载
- 积分:1
-
E7_1_LMSSim
LMS matlab 仿真实例
Monte Carlo仿真统计次数(LMS matlab simulation examples
Monte Carlo simulation statistics)
- 2015-01-26 21:18:42下载
- 积分:1
-
多目标调度
说明: 分别列出三个目标函数,成本,污染,综合效益对微网分别调度。(Three objective functions, cost, pollution and comprehensive benefit are listed respectively to dispatch microgrid.)
- 2020-12-09 17:19:19下载
- 积分:1
-
distance
LTE分小区模型 并且计算各个用户和基站之间的距离(the cell model of LTE)
- 2012-05-02 19:50:02下载
- 积分:1
-
The-effect-of-aliasing
MATLAB中的混叠的效果代码,其中包含:时域的混叠效果;频域的混叠效果(The effect of aliasing the MATLAB code, which includes: a time domain aliasing effects frequency domain aliasing effects)
- 2020-09-03 10:08:09下载
- 积分:1
-
ohm--meter
ohm meter with Matlab...moslem.farahi
- 2013-05-21 02:43:29下载
- 积分:1
-
makeSARdata_DBS
这是DBS数据生成程序,给需要的人。同时希望大家也多上传自己的程序,共同进步(DBS data generation)
- 2010-05-23 18:11:19下载
- 积分:1
-
wind_dfig22
双馈风力发电系统的较详细模型,包含了网侧和机侧的控制算法,可以调试运行!(A more detailed model of doubly-fed wind power generation system, including the control algorithms network side and the machine side, you can debug run!)
- 2014-08-26 14:44:50下载
- 积分:1