-
Chapter7
matlab代码,可以直接运行,是一个M文件(matlabmatlabmatlabmatlabmatlab)
- 2009-04-28 10:00:16下载
- 积分:1
-
filtering_algorithm
比较详细地介绍了一些滤波算法,基于C语言实现(A more detailed description of a number of filtering algorithm, based on the C language)
- 2010-12-19 23:26:43下载
- 积分: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
-
ProgrammingWithMATLAB
Matlab tutorials in basics
- 2012-10-26 18:33:54下载
- 积分:1
-
SOGI_PLL_single_phase_discrete
说明: 基于SOGI的锁相环设计,可以实现较为准确的相角跟踪(The phase-locked loop design based on sogi can realize more accurate phase angle tracking)
- 2019-10-22 16:25:43下载
- 积分:1
-
LMSalgohm
基于LMS算法的自适应滤波收敛性的Matlab仿真(LMS adaptive filtering algorithm based on the convergence of the Matlab simulation)
- 2010-11-15 15:23:26下载
- 积分:1
-
5-20
自适应滤波原理(国外教材)计算机作业的MATLAB程序,调试通过,有一定的参考价值。(Principles of Adaptive Filtering (foreign materials) MATLAB computer operating procedures, testing is passed, there is a certain reference value.)
- 2009-06-07 14:36:10下载
- 积分:1
-
gslbq
高斯低通,高斯高通滤波器。matlab实现,用于图像平滑处理,去噪,和锐化。(gaosi,filter。)
- 2010-05-17 19:05:36下载
- 积分:1
-
matlab-smoothing
利用matlab把遥感影像,进行滤波处理。窗口可以选择3*3,5*5,7*7.。。(Using matlab to remote sensing image filtering. Window, you can choose 3* 3,5* 5,7* 7)
- 2013-08-04 01:13:29下载
- 积分:1
-
TEEN.m
matlab code for TEEN routing protocol for WSN
- 2015-02-22 20:08:36下载
- 积分:1