-
image_RGB
说明: 该文件提供了基于图像颜色特征检索的源代码(this artical provides the code based of the color of a image)
- 2011-03-18 17:41:13下载
- 积分:1
-
NarrowSignalMVDR
经典窄带信号含有两个干扰源,最后绘制方向图(Classic narrowband signal contains two sources of interference, the pattern drawn last)
- 2013-08-10 10:02:07下载
- 积分:1
-
MATLABSimulationsforRadarSystemsDesign
雷达设计的matlab仿真书籍,涵盖了各种基础算法(Matlab simulation of radar design books, covering a variety of basic algorithms)
- 2010-06-02 11:24:29下载
- 积分:1
-
48Vbatterycharger
48V battery Charger. It consists of a rectifier and a buck converter, and a control loop.
- 2012-06-01 18:31:45下载
- 积分:1
-
bazier
利用Matlab计算bazier曲线的问题,拟合的结果非常良好,数学专业的可用(Calculation of the bazier curve fitting results are very good in mathematics can be used)
- 2012-06-24 00:09:26下载
- 积分:1
-
luihang_v72
有井曲线作为输入可计算其地震波的衰减,基于互功率谱的时延估计,比较了软阈值,硬阈值及当今各种阈值计算方法。( There is a well attenuation curve as input to calculate its seismic waves, Based on the time delay estimation of power spectrum, Comparison of soft threshold and hard threshold and today various threshold calculation method.)
- 2017-01-16 12:11:56下载
- 积分:1
-
X-means
对K-means聚类算法的改进X-means算法。针对K值如何设定的问题,利用BIC准则判断聚类点数量。同时附有两个初始聚类点的选择程序,自己选吧。(The improved X-means algorithm for K-means clustering algorithm. In view of the problem of how to set the K value, the number of clustering points is judged by the BIC criterion. At the same time, there are two initial clustering points of the selection program, choose it yourself.)
- 2018-02-24 21:29:30下载
- 积分:1
-
homework6
用GM算法进行MA参数估计,高阶谱估计的实例,累积量算法(GM algorithm using MA parameter estimation, higher-order spectrum estimation examples of accumulation algorithm)
- 2009-11-19 16:30:40下载
- 积分:1
-
Simulink.with.Engineering.Applications-
Simulink engineer orchard
- 2009-05-29 09:44:29下载
- 积分: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