-
monitort2
core loss effect with minotoring in matlab
- 2009-09-23 09:39:58下载
- 积分:1
-
MATLAB-coursware
说明: 用课件方式教你对matlab有快速而全面的认识(Teach you quick and comprehensive understanding of matlab )
- 2009-08-16 10:19:00下载
- 积分:1
-
drilling_control
It is a drilling system control
- 2013-08-25 14:31:05下载
- 积分: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
-
MPC
里面包括几部分预测控制程序,程序本人都验证过,没有错误。(Includes several parts predictive control program, the program are verified, there is no error.)
- 2015-10-31 12:32:19下载
- 积分:1
-
MSE
基于MATLAB的信道估计LS代码 可运行(MATLAB-based channel estimation of the LS code can run)
- 2009-05-12 10:44:20下载
- 积分:1
-
MATLABdaitonglvboqi
说明: 基于MATLAB的双线性带通滤波器的设计(MATLAB-based bilinear bandpass filter design)
- 2010-04-05 14:13:47下载
- 积分:1
-
chan_taylor
实现三维定位,利用chan算法与taylor算法想结合的方法,减小了定位误差(Three-dimensional positioning, would like to combine the use of the chan algorithms and taylor algorithm method to reduce the positioning error)
- 2013-01-09 18:28:45下载
- 积分:1
-
时频分析(STFT)对线性调频信号进行时变滤波
在压制式噪声调频干扰环境下,应用时频分析的方法(STFT)对线性调频信号进行时变滤波,对干扰进行了初步的抑制。(Under suppress noise FM interference environment, the application method (STFT) variable frequency analysis filtering chirp signal when a preliminary interference suppression.)
- 2020-08-23 20:48:16下载
- 积分:1
-
OFDM-UWB
使用matlab编写的信道估计与误码率测试程序,可以作为OFDM学习的参考,(Prepared using matlab channel estimation and bit error rate testing procedures, can be used as a reference OFDM learning,)
- 2012-08-12 22:02:20下载
- 积分:1