-
fh-matlab
用MATLAB实现跳频通信的的仿真与研究内容包括论文和gold码序列(Achieve frequency hopping communication with MATLAB simulation and study includes papers and gold code sequence)
- 2021-03-11 10:29:26下载
- 积分:1
-
baudrate
AUTOMATIC BAUD RATE DETECTION FOR STANDARD BAUD RATES
- 2014-02-24 14:04:58下载
- 积分:1
-
LMS_EQ
最小均方自适应滤波器,是线性自适应滤波算法(LMS adaptive filters, linear adaptive filter algorithm)
- 2006-06-15 21:47:34下载
- 积分: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
-
simplex
改进单纯形法在matlab中的实现。通过该程序可以实现优化目标。(Improved simplex method is implemented in matlab.Through the program can realize the optimization goal.
)
- 2013-03-15 17:17:23下载
- 积分:1
-
JADE
角度和时延联合估计的DOA算法,在matlab环境下实现(Angle and delay DOA joint estimation algorithm in matlab environment to achieve)
- 2020-12-30 17:19:00下载
- 积分:1
-
PCMTITEST2010
MATLAB程序中提供了脉压,MTI,MTD的实现方法(lllll)
- 2020-12-25 23:49:04下载
- 积分:1
-
Slow-Feature-Analysis
Slow feature analysis using matlab
- 2013-09-27 18:00:06下载
- 积分:1
-
ErrorPerformanceSurface
数字信号处理2matlab误差性能分析
数字信号处理2matlab误差性能分析(error performance analyze surface)
- 2011-12-08 11:17:02下载
- 积分:1
-
MSE_compare
信道估计的几个算法比较(matlab源代码)(Several channel estimation algorithm for comparison)
- 2009-09-19 11:02:50下载
- 积分:1