-
Faceseg
video detection file
- 2011-01-10 13:47:54下载
- 积分:1
-
zxfy_zdl
说明: 用Floyd算法设计的最小费用最大流,求最大流时,用的是标号算法(Floyd algorithm design with the minimum cost maximum flow, for maximum flow, the algorithm is labeling)
- 2006-05-13 19:20:18下载
- 积分:1
-
Ishimaru
随机介质中波的传播与散射,分为两卷,作者Akira Ishimaru(Wave propagation and scattering in random media)
- 2021-01-21 15:28:46下载
- 积分:1
-
pansou
通过matlab代码,计算目标和海洋回波的功率谱密度,GPS和INS组合导航程序。( By matlab code, Calculating a target and ocean echo power spectral density, GPS and INS navigation program.)
- 2016-09-18 01:33:15下载
- 积分:1
-
Matlab_GUI
初学入门教程,学会用matlab gui设计用户界面,并编写响应程序。(Beginners Tutorial, learn how to use matlab gui user interface design, and write response procedures.)
- 2011-09-26 10:22:54下载
- 积分:1
-
asynchrono-motors-abc
异步电机abc仿真模型,书中代码的改进,可能对您有用(Improvement of induction motor the abc simulation model , the code in the book , you might find useful)
- 2013-03-29 13:56:33下载
- 积分:1
-
Erlang
Matlab生成Erlang分布随机数的m文件。Erlang分布能拟合其他几乎所有的分布,更具有一般性。(Matlab to generate random numbers m Erlang distribution file. Erlang distribution can fit almost all other distributions, more general.)
- 2020-12-25 21:09:04下载
- 积分:1
-
chnbound
matlab画中国区域图,可以显示每个省会城市名称(matlab China map, can see city name)
- 2009-11-24 18:13:09下载
- 积分:1
-
Matlab-7[1].0
使用说明数值计算部分,matlab7的数值计算部分学习。(Instructions for use numerical part, matlab7 numerical part of learning.)
- 2014-12-29 23:07:18下载
- 积分: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