美文网首页
蕨型叶分形

蕨型叶分形

作者: 人机分离机 | 来源:发表于2017-11-08 17:24 被阅读0次
    1. 图形对象gcf
      get( gcf) 获取对象的属性
      set(gcf,color,red) 设置属性的背景颜色
      pink【1 0 1】
      callback 关闭窗口

    2. 旋转蕨型叶图

    • 互换x,y区间
    axis([-3 3 0 10 ])
    改为
    axis([0 10 -3 3])
    
    • 互换 x 和 y 坐标来旋转蕨型叶图
    plot(x(1),x(2),'.','markersize',4,'color',pink)
    gaiwe
    plot(x(2),x(1),'.','markersize',4,'color',pink)
    

    3.由 2X2联立 线性 方程 求蕨型叶上边尖的坐标

    • 由 bx=(1-A)
    >> A=[0.84 0.04;-0.04 0.84]
    >> b=[0;1.6]
    >> B=eye(2)-A
    >> x = B\b
    

    相关文章

      网友评论

          本文标题:蕨型叶分形

          本文链接:https://www.haomeiwen.com/subject/ldsymxtx.html