-
KalmanFilter
经典的KALMAN滤波算法,适用于初学者。(Classic KALMAN filtering algorithm for beginners.)
- 2011-11-15 15:24:51下载
- 积分: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
-
barcode
39码检测,条形码检测,检测条形码所包含的信息并输出信息。(barcode detection)
- 2011-12-13 22:41:34下载
- 积分:1
-
移动节点模型仿真代码和仿真图random-mobile-nodes
移动节点模型仿真代码和仿真图,适用于wsn移动节点定位算法研究。(Mobile node model simulation code and simulation maps, research wsn mobile node localization algorithm applies.)
- 2016-11-28 16:15:46下载
- 积分:1
-
2d-phc-pwe-method
2d PhC calculation bandgap by PWE method
- 2011-05-07 20:30:43下载
- 积分:1
-
polyfit
利用最小二乘解法进行离散数值拟合,得到逼近曲线(Discrete least-squares method for the use of numerical simulation, the approximation curve)
- 2009-03-30 20:52:56下载
- 积分:1
-
mexclp
CLP Interface to LP/QP solver MEXCLP
- 2009-04-24 23:25:11下载
- 积分:1
-
nbodyVect
多刚体动力学matlb编程 用辛方法
Fully vectorized n-body equation
nbodyVect(x0,dx0,mus,t) integrates the n-body equations of motion using either a symplectic second order integrator, or any of the
standard built-in or user supplied first order integrators.
(Programming multi-body dynamics with symplectic methods matlb Fully vectorized n-body equation nbodyVect (x0, dx0, mus, t) integrates the n-body equations of motion using either a symplectic second order integrator, or any of the standard built-in or user supplied first order integrators.)
- 2010-12-26 14:15:31下载
- 积分:1
-
c
说明: 基于MATLAB的报纸图片分割。可以将报纸的各个部分的内容分割出来。。(MATLAB-based newspaper image segmentation. The various parts can be newspaper content from it. .)
- 2010-05-13 23:25:47下载
- 积分:1
-
axisticks
This function is useful to make a dateaxis adjustable
- 2014-02-06 17:55:34下载
- 积分:1