分行产生源码程序 - matlab算法设计 - 谷速源码
下载频道> 资源分类> matlab源码> 算法设计> 分行产生源码程序

标题:分行产生源码程序
分享到:

所属分类: 算法设计 资源类型: 文件大小: 1.03 KB 上传时间: 2016-01-26 23:03:37 下载次数: 7 资源积分:1分 提 供 者: 马云 分行产生源码程序
内容:
分行产生源码程序,程序员在编程的过程中可以参考学习使用,希望对IT程序员有用,此源码程序简单易懂、方便阅读,有很好的学习价值!
%Dragon Curve/Fractal generated by mimicking the paper folding method
%Author: James Wood 2013
 
close all
clear all
clc
angle=0
%amount to rotate the final fractal 
iter=20
%number of iterations
 
D=1;
for j=2:iter;
    D2=flipud(~D);
    %Make second half of new iteration 
    %by performing NOT operation and flipping 
    D(end+1,1)=0;
    %make center point 0 
    D=vertcat(D,D2);
    %join 2 halves of new iteration
end
 
D=D-(~D);
%Changes values from 0,1 -> -1,1 for use with imaginary number
 
D=1i.^cumsum(D);
%Generates a list of new locations for each element relative to the
%previous element
 
D=cumsum(D);
%Cumulatively sums the elements to for final image
 
E=exp(1i*angle*pi/180)*D;
%rotates the final matrix 
 
plot(E)
 

文件列表(点击上边下载按钮,如果是垃圾文件请在下面评价差评或者投诉):

分行产生源码程序/
分行产生源码程序/dragon_fractal_complex/
分行产生源码程序/dragon_fractal_complex/dragon_fractal_complex.m

关键词: 分行 源码 程序

Top_arrow
回到顶部
联系方式| 版权声明| 招聘信息| 广告服务| 银行汇款| 法律顾问| 兼职技术| 付款方式| 关于我们|
网站客服网站客服 程序员兼职招聘 程序员兼职招聘
沪ICP备19040327号-3
公安备案号:沪公网安备 31011802003874号
库纳格流体控制系统(上海)有限公司 版权所有
Copyright © 1999-2014, GUSUCODE.COM, All Rights Reserved