-
matlab_DCT
找到的另一种基于DCT变换的数字水印算法 matlab源码(digital watermarking)
- 2009-05-31 21:14:54下载
- 积分:1
-
lms_rls
用matlab仿真LMS算法和RLS算法的收敛性,并对rls算法和lms算法做比较(Matlab simulation with the LMS algorithm and RLS algorithm convergence, and rls algorithms and lms algorithm to compare)
- 2010-05-28 15:19:31下载
- 积分:1
-
xuling-matlab
[WuYuFei]中是WuYuFei的论文
[WuYufei_matlab]是WuYufei的Matlab程序
做Turbo码,恐怕很难绕过WuYufei的程序,呵呵
[cap_turbo]和[mother]是我在研究阶段的工作
走了很多弯路,所以这两个目录必然有很多错误而且很混乱
如果想了解一下我的研究历程可以看看,切不可拿来修炼,否则走火入魔俺不管。平,mdsvl,sdlxcl([WuYuFei] is WuYuFei papers [WuYufei_matlab] is a Matlab program to do WuYufei Turbo codes, it would be difficult to bypass WuYufei procedures, Oh [cap_turbo] and [mother] at the research stage of my work take a lot of detours, so These two directories must have a lot of mistakes and a lot of confusion if you want to know can see my research process, must not be used practice, or whether I possessed by the Devil.)
- 2011-05-21 10:15:48下载
- 积分:1
-
3
说明: description of the file
- 2011-06-23 18:08:03下载
- 积分:1
-
B_ewma
单输入单输出,变增益的EWMA算法,MATLAB仿真代码(Single-input single-output, variable gain the EWMA algorithm, MATLAB simulation code)
- 2013-03-11 16:53:50下载
- 积分:1
-
bpfenlei
matlab算法,用bp网络进行训练,然后进行分类的一种算法,很成功(matlab algorithm, using bp network training, followed by a classification algorithm, very successful)
- 2015-04-06 12:32:05下载
- 积分:1
-
showkeys
很有用的源代码,很实用,效果相当好,很值得收藏(Useful source code, very practical, results have been very good, very worthy collection)
- 2010-11-26 21:38:57下载
- 积分:1
-
forecast-of-procedures
基于卡尔曼方法的预测短时交通流量的程序实现(To achieve based on the the short-time traffic flow of the the the forecast of the Kalman method procedures)
- 2021-01-04 16:28:55下载
- 积分:1
-
matlab
三个遗传算法matlab程序实例,通过对三种典型的遗传算法进行代码实现,可以简单明了的认识遗传算法(Three genetic algorithm living example of matlab code)
- 2013-04-15 15:31:31下载
- 积分: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