-
node
自适应算法是一种新的算法,本程序提供了该算法去噪功能,用处广泛。(reducing the noise using the self-adaptation)
- 2009-06-13 14:19:32下载
- 积分:1
-
floyd
说明: floyd算最短路径,函数和例子都有。只需要把数据转换就行 ……(floyd)
- 2009-08-28 14:46:53下载
- 积分:1
-
three_phase_motor_start_transform
三相异步电机启动,变压器启动matlab仿真,希望对大家有帮助(Three-phase induction motor to start, transformers start matlab simulation, we hope to help)
- 2009-05-20 11:43:10下载
- 积分:1
-
MATLAB
matlab仿真两种目标类型在积累和不积累下的情况(matlab simulation of two target types accumulation and accumulated under)
- 2013-05-11 10:20:50下载
- 积分:1
-
plot_hhtsanwei
经验模态分解以后,可以画三维的图,一瞬时频率,时间和幅值为坐标(jingyanmtaifenjie)
- 2010-07-18 09:51:16下载
- 积分:1
-
最小二乘逆滤波器 adsp2
设计最小二乘逆滤波器求解反卷积问题,假设有观测噪声,为降低观测噪声的影响,可采用预白化方法,设计长度N=50的最小平方FIR逆滤波器(inverse filter design for least squares deconvolution, the assumption that the measurement noise, To reduce the impact of noise and possible pre-whitening method, the length N = 50 the minimum inverse square FIR filter)
- 2007-05-15 22:40:41下载
- 积分:1
-
样本熵近似熵LZC
说明: 样本熵、近似熵、lempel-ziv函数代码。lempel-ziv复杂度是一种表征时间序列里出现新模式的速率的方法(the codes of approximate entropy, sample entropy and lempel-ziv function)
- 2021-01-27 16:25:08下载
- 积分:1
-
ginput2
It will allow you to configure camera
- 2009-03-28 02:55:27下载
- 积分:1
-
a
说明: 处理蠓虫分类的另一种网络方法,方法仅供参考(Another network approach to classification midges)
- 2014-09-14 17:33:36下载
- 积分: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