-
mathmodlingtoolbox
数学建模绝对用的着,内有各种先进算法的matlab的m文件,绝对值得(very good material for you if you want toset up some math modles)
- 2010-11-28 19:26:50下载
- 积分: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
-
qam-slicer-and-offset
qam slicer and offset adder
- 2015-04-05 19:49:37下载
- 积分:1
-
Modified-X-means
Emitter Recognition Based on Modified X-means
- 2014-02-20 10:10:42下载
- 积分:1
-
8427950yuzhi
说明: 用于数据信号去噪,非常好用,值得强烈推荐,强烈推荐(For data signal denoising, very easy to use, highly recommended, highly recommended)
- 2019-03-04 20:33:43下载
- 积分:1
-
qianbihuahuizhi
基于图象的铅笔画绘制,图形图象处理范围的内容。(Image-based pencil drawing, graphics, image processing range of content.)
- 2010-11-09 09:01:03下载
- 积分:1
-
my-file
here is program is related to optimization method, gui, regression, graph.
- 2011-02-03 16:52:49下载
- 积分:1
-
duffing
ZXZXC下从CWE WER WER 我啊啊 啊 但机考就i(ZXZXC from and CWE WER WER but I ah ah ah computer test to i)
- 2011-05-07 12:41:38下载
- 积分:1
-
McGraw.Hill.MATLAB.Demystified.Apr.2007
matlab book for beginners
- 2013-04-29 13:39:57下载
- 积分:1
-
inventory-control
JIT配送策略下的库存控制管理模型,此程序可以实现jit配送下供货商对经销商的库存管理功能(inventory control model)
- 2012-12-02 20:04:52下载
- 积分:1