-
circle
pde图像画出的一个偏微分方程的图形,用以表示污染物传递(pde partial differential equation image to draw a graph)
- 2011-09-11 13:23:45下载
- 积分:1
-
Kalman
Kalman滤波的matlab例程,内含kalman滤波方法的介绍.(Kalman filtering matlab routines, including the introduction kalman filtering method.)
- 2009-03-21 10:12:58下载
- 积分:1
-
mat_master
matlab code for dynamic time warping
- 2014-10-31 15:44:30下载
- 积分:1
-
din
perturb and observe technique is used as mppt technique for photovoltaic system.
- 2013-11-21 01:28:21下载
- 积分:1
-
GSAALB
TDMA系统中多用户多业务的无线接入控制和时隙分配算法(TDMA systems in multi-user multi-service wireless access control and time slot allocation algorithm)
- 2011-12-19 19:38:20下载
- 积分:1
-
fast_Color_cluster
fast image clustering
- 2014-12-26 20:40:32下载
- 积分:1
-
HumanDetection
this describes how we can use Matlab for Human detection in a Video.
- 2010-08-30 21:45:34下载
- 积分:1
-
MATLABnihe.rar
说明: 介绍怎样利用matlab对曲线进行拟合的文章,实用性很高(Introduce how to make use of matlab curve fitting of the article, practical, high)
- 2008-09-04 22:07:37下载
- 积分:1
-
videopatternmatching
说明: 本程序展示了二维归一化互相关用于
  模式匹配和目标跟踪。该程序提示用户选择感兴趣的(ROI)的区域和对同类目标进行跟踪的数目。归一化交叉相关图表明,当值已超过设定的阈值时目标就已经确定。(This demo illustrates the use of 2-D normalized cross-correlation for
pattern matching and target tracking. The demo prompts the user to select the Region of Interest (ROI) and the number of similar targets to be tracked. The normalized cross correlation plot shows that when the value has exceeded the set threshold, the target has been identified.)
- 2010-04-12 23:59:04下载
- 积分: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