-
PhaseModulationandemodulation
移相键控的调制与解调matlab编程与实现(Phase shift keying modulation and demodulation matlab programming and the realization of)
- 2008-04-24 22:27:50下载
- 积分:1
-
yucekongzhi
基于动态矩阵控制算法的模型预测控制,
预测控制(Dynamic Matrix Control Algorithm Based on the model predictive control, predictive control)
- 2009-05-22 10:39:07下载
- 积分:1
-
MATLAB_BP
matlab神经网络的应用和分析,很好用的 对bp的学习是中帮助(matlab neural network application and analysis)
- 2011-04-25 15:07:11下载
- 积分:1
-
fractal-use
分形的练习一
①Koch曲线
用复数的方法来迭代Koch曲线
clear i 防止i被重新赋值
A=[0 1] 初始A是连接(0,0)与(1,0)的线段
t=exp(i*pi/3)
n=2 n是迭代次数
for j=0:n
A=A/3 a=ones(1,2*4^j)
A=[A (t*A+a/3) (A/t+(1/2+sqrt(3)/6*i)*a) A+2/3*a]
end
plot(real(A),imag(A))
axis([0 1 -0.1 0.8])
②Sierpinski三角形
A=[0 1 0.5 0 0 1] 初始化A
n=3 迭代次数
for i=1:n
A=A/2 b=zeros(1,3^i) c=ones(1,3^i)/2
A=[A A+[c b] A+[c/2 c]]
end
for i=1:3^n
patch(A(1,3*i-2:3*i),A(2,3*i-2:3*i), b ) patch填充函数
end
(Fractal
Exercise One
The ① Koch curve
Plural iteration Koch curve
clear i to prevent i is reassigned
A = [0 1] initial A is a connection (0,0) and (1,0) of the segments
t = exp (i* pi/3)
n = 2 n is the number of iterations
for j = 0: n
A = A/3 a = ones (1,2* 4 ^ j)
A = [A (t* A+ a/3) (A/t+ (1/2+ sqrt (3)/6* i)* a) A+2/3* a]
end
plot (real (A), imag (A))
axis ([0 1-0.1 0.8])
② Sierpinski triangle
A = [0 1 0.5 0 0 1] initialized A
n = 3 the number of iterations.
for i = 1: n
A = A/2 b = zeros (1,3 ^ i) c = ones (1,3 ^ i)/2
A = [A A+ [c b] A+ [c/2 c]]
end
for i = 1:3 ^ n
patch (A (1,3* i-2: 3* i), A (2,3* i-2: 3* i), b ) patch filled function
end)
- 2013-03-02 10:03:09下载
- 积分:1
-
EMDtool-c
emd的c语言版本,方便使用,高效率!!!!!!!!!!!(emd program is edited by the c language ,and it s easy to use and efficiently .it will give you a good impression !!!!)
- 2015-01-25 21:30:32下载
- 积分:1
-
lfm
线性调频信号频谱估计,与线性调频信号相关MATLAB程序相关,采用二维峰值搜索方法。(Linear frequency modulation signal frequency estimation, and linear frequency modulation signal related MATLAB program, using two-dimensional peak search method.)
- 2017-07-13 16:40:16下载
- 积分:1
-
vs2008_matalb2009b_DLL
阐述vs2008如何调用matalb2009b生成的DLL的文档,自己摸索的经验,供大家参考(Vs2008 described how to call matalb2009b generated DLL in the document, find their own way of experience, for your reference)
- 2010-09-01 00:36:32下载
- 积分:1
-
chap2_05_LS
非常好而且比较经典的批处理最小二乘参数估计算法。(Very good and classic batch least squares parameter estimation algorithm.)
- 2012-05-10 17:59:21下载
- 积分:1
-
zishiyingGPC
自适应GPC算法,当被控对象参数未知或慢时变时,采用参数估计算法,在线估计出被控对象的参数,然后用参数估计值代替真实值进行控制律的推导。(Adaptive GPC algorithm, when the charged object is unknown or slowly time-varying parameters, the use of parameter estimation algorithms, on-line estimate the parameters of the controlled object, then use the parameter estimates instead of real value to the control law derivation.)
- 2011-06-22 21:21:45下载
- 积分:1
-
QMIN
功能: 精确线搜索之抛物线法
输入: phi 是目标函数, a和b是搜索区间的端点(Features: accurate line search of the parabola method input: phi is the objective function, a and b are the endpoints of the search range)
- 2011-09-06 13:16:58下载
- 积分:1