登录
首页 » matlab » fractal-use

fractal-use

于 2013-03-02 发布 文件大小:43KB
0 126
下载积分: 1 下载次数: 4

代码说明:

  分形的练习一 ①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)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论


0 个回复

  • Genetic-algorithm-(ga)
    遗传算法Matlab源代码,优化目标函数比较广泛,是常用的算法之一,同时也是学习其他算法的基础。(Genetic algorithm (ga) )
    2013-08-13 11:01:39下载
    积分:1
  • PUCCH_Ya
    lte系统上行控制信道pucch的matlab仿真实现(lte system uplink control channel pucch matlab simulation realization)
    2014-10-23 14:58:38下载
    积分:1
  • kalman
    卡尔曼滤波用于无线传感器定位的算法,可以供学习用(Kalman filtering for wireless sensor positioning algorithm for learning with)
    2012-10-22 21:15:19下载
    积分:1
  • vector_control
    matlab work of matrix converter.......................
    2012-02-08 16:49:06下载
    积分:1
  • Chebyshev-filter
    切比雪夫滤波器的matlab实现代码,数字信号处理(Chebyshev filter matlab to achieve the code, digital signal processing)
    2017-05-23 16:02:35下载
    积分:1
  • a
    说明:  PLL性能,仿真,设计handbook,总结了常用的PLL结构和性能,对设计PLL很有帮助(PLL performance,simulation,design handbook)
    2009-10-25 10:25:11下载
    积分:1
  • pca2
    这是基于PCA的人脸识别代码,识别率达到88.5 ,比较理想,希望对大家有所帮助.(This is a PCA-based face recognition code, the recognition rate of 88.5 , ideal, we want to help.)
    2011-06-23 20:18:43下载
    积分:1
  • convlenc
    encoder convolutional
    2010-01-20 00:14:31下载
    积分:1
  • signal
    信号相加,卷积的应用,从别的地方学习的,貌似有点问题,大家可以参考一下(From other place)
    2013-03-20 09:26:17下载
    积分:1
  • xiaobobianhuan
    说明:  本程序是基于matlab语言编写的有关图像处理的源代码(This procedure is based on the matlab language of the source code for image processing)
    2010-04-14 10:35:02下载
    积分:1
  • 696518资源总数
  • 104622会员总数
  • 14今日下载