-
PN-code
psuedo noise code in matlap
- 2011-06-18 18:37: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
-
lianmatezhengtiqu
对图形的边缘,可实现图像到链码,链码到图像的转换。(right to the brink of graphics, images can be realized chain code, the chain code to the image conversion.)
- 2007-07-09 16:01:26下载
- 积分:1
-
08
说明: 用matlab实现的调幅,调频,解调等例程,给大家作为参考(Matlab achieved with AM, FM, demodulator, such as routine for the reference of Members)
- 2009-07-06 15:18:33下载
- 积分:1
-
Transfer-Matrix-Optical-Modeling
Transfer Matrix Optical Modeling
- 2011-05-07 01:24:01下载
- 积分:1
-
Copy-of-progamtoaddimpulsenoise
matlab code for convolution
- 2013-09-13 18:46:17下载
- 积分:1
-
em_diffraction
通过matalb简单的仿真的电磁波在狭缝中的衍射情况,并做出了动态图。(Through a simple simulation of electromagnetic matalb slit diffraction in the case and make a dynamic map.)
- 2014-01-11 14:22:49下载
- 积分:1
-
fadapt-master
说明: 里面包含各种自适应算法,涉及多本不同的自适应书籍原文代码,可用于aec等等。(acoustic echo cancellation)
- 2020-04-10 14:36:46下载
- 积分:1
-
03 灰色预测模型
说明: 灰色系统理论是研究解决灰色系统分析、建模、
预测、决策和控制的理论.灰色预测是对灰色系统
所做的预测.目前常用的一些预测方法(如回归分
析等),需要较大的样本.若样本较小,常造成较
大误差,使预测目标失效.灰色预测模型所需建模
信息少,运算方便,建模精度高,在各种预测领
域都有着广泛的应用,是处理小样本预测问题的
有效工具(Grey system theory is the research and solution of grey system analysis, modeling,
The theory of prediction, decision - making and control
At present, some commonly used prediction methods (such as regression score)
If the sample size is small, it often results in a comparison
Large error, so that the prediction of the target failure
Less information, convenient operation, high modeling accuracy, in a variety of prediction collar
Fields are widely used to deal with small sample prediction problems
Effective tool)
- 2019-01-27 09:26:31下载
- 积分:1
-
Documentation
some matlab codes for image processing
- 2009-06-02 15:50:09下载
- 积分:1