-
book1
machine learning algorithm, it is to optimize the model and improve the function
- 2009-02-12 09:01:03下载
- 积分: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
-
Area-of-interest
这个matlb程序能够实现图像里面的刚兴趣区域的提取和分割(The matlab program to achieve extraction and image segmentation inside the region of interest)
- 2015-04-14 16:26:08下载
- 积分:1
-
Selective-Harmonic-Elimination
选择性消除谐波,通过调试运行,结果精确,且易于自行修改所需参数。(Selective harmonic elimination, through commissioning, operation, results are accurate, and easy to modify the required parameters.)
- 2014-04-12 17:58:15下载
- 积分:1
-
ppca
Mtlab function for PCA
- 2012-05-08 21:12:53下载
- 积分:1
-
puma3
基于matlab机器人puma762运动分析与仿真的源程序代码。(Based on matlab robot puma762 movement analysis and simulation of the source code.)
- 2012-05-15 10:10:40下载
- 积分:1
-
蚁群VRP
说明: 用蚁群算法解决VRP问题,包含基本蚁群算法(我记得不含时间窗约束)(Using ant colony algorithm to solve VRP problem, including basic ant colony algorithm)
- 2019-08-21 17:21:59下载
- 积分:1
-
BMP_broken_fiber
Beam propagation method - light propagation along planar waveguide, which is broken. The code could be easily modified for unbroken waveguide and two waveguides.(Beam propagation method- light propagation along planar waveguide, which is broken. The code could be easily modified for unbroken waveguide and two waveguides.)
- 2009-06-15 20:27:50下载
- 积分:1
-
precision
说明: 捷联惯导系统传递对准MATLAB程序,传递对准的精度评估。(SINS Transfer Alignment MATLAB procedures, transfer alignment accuracy assessment.)
- 2008-09-18 16:17:00下载
- 积分:1
-
Still-Image-and-Video-Compression-with-MATLAB
an usefull book about İ mage compression with matlab
- 2012-05-28 20:10:34下载
- 积分:1