-
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
-
matlab16-QAM
基于MatlabSimulink的16QAM调制解调系统性能研究(Based on the MatlabSimulink 16QAM modulation and demodulation system performance)
- 2012-06-07 22:50:54下载
- 积分:1
-
LT_code
基于matlab的数字喷泉码LT码理想度分布编码实现。
向往可以对初学者有用。文件格式:m文件,自己运行可以用。(Coding matlab-based digital fountain code LT codes ideal degree distribution.
Longing can be useful for beginners. File format: m file, run their own can be used.)
- 2013-05-04 21:34:16下载
- 积分:1
-
ICAcrosstalkerror
我自己编的串音误差计算函数,对公式进行了一定化简,比本网站其他同类计算函数运算速度要快。用于盲源分离的质量评价,另外还包含ICA中有关性能评价指标的文章。(My own series of crosstalk error calculation function, to the formula for a certain simplification, other than this site similar calculation function operation faster. Quality Evaluation for blind source separation, also contains articles on the ICA performance uation index.)
- 2015-04-10 11:20:04下载
- 积分:1
-
p
说明: to detect branch and end points of bones
- 2015-05-08 14:56:43下载
- 积分:1
-
ThemethodsofFDTDbyPro.WangChangqing.pdf
这是王长清教授的关于时域有限差分解光子晶体的书,这本和高本庆教授的结合看能深刻理解FDTD方法。(This book is about the method of FDTD that is written by Pro.Wang Changqing,one can read it with the book that written by Pro.Gao Benqing to obtain FDTD.)
- 2010-09-24 14:51:53下载
- 积分:1
-
EX080700
说明: 切比雪夫-2型低通滤波器设计
基于matlab仿真编程的(-2 Chebyshev low-pass filter design based on Matlab simulation programming)
- 2006-03-30 14:58:53下载
- 积分:1
-
rx_demodulate
OFEM接收机的解调,检测合格,效果良好,本人亲测(the demodulation of OFDM receiver)
- 2013-07-12 20:21:26下载
- 积分:1
-
BSAS
顺序聚类算法-BSAS,并在MATLAB上实现。在输入矩阵和参数后,对其进行顺序聚类,得到聚类类别标签和聚类中心(Sequential clustering algorithm-BSAS, and implemented on MATLAB. Parameters in the input matrix and its sequential clustering, and cluster by cluster category labels center)
- 2021-04-23 10:08:48下载
- 积分:1
-
NB
说明: 自己编写的NB函数,可以读取UCI数据集中任意一个数据集。(I have written the NB function, can read any of the UCI data set data set.)
- 2010-05-19 16:09:28下载
- 积分:1