-
matlab_fun
MATLAB常用函数参考,各种函数命令,操作指南。(MATLAB function reference, a variety of command functions, operation guide.)
- 2009-07-10 16:43:47下载
- 积分:1
-
tsp
本源码是matalb解决数学中经典的tsp问题的代码,算法思想是遗传算法(The source is matalb tsp solve mathematical problems in the classical code, the algorithm idea is that genetic algorithms)
- 2011-06-04 00:02:53下载
- 积分:1
-
matlab1
介绍了MATLAB的图视化功能,工具箱函数汇总,MATLAB 程序设计与应用等(Introduction of the MATLAB visualization of map features, the toolbox function summary, MATLAB Program Design and applications)
- 2008-02-22 15:06:34下载
- 积分:1
-
predictivecontrolexample
预测控制实例程序,在matlab 7.1环境中编译通过,效果还可以,希望大家学习交流(Examples of predictive control procedures, the compiler matlab 7.1 environment is passed, the effect can also hope that we learn)
- 2009-06-01 15:35:26下载
- 积分:1
-
AFirstCourseInFiniteElements-Ch12-MATLAB
Finite element programming with Matlab
- 2011-01-22 23:24:35下载
- 积分: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
-
FLUX
THIS PAPER IS ABOUT DIAGNOSIS AXIS FLUX AND DIAGNOSIS FAULT IN INDUCTION MOTOR
- 2013-12-29 08:03:49下载
- 积分:1
-
ACATSP
蚁群算法,MATLAB求最短路径,解放军信息工程大学一个老师编的matlab程序(Ant Colony Algorithm for Traveling Salesman Problem)
- 2009-09-05 20:51:13下载
- 积分:1
-
kelp-0.7.src
KELP是一个源代码分析软件,帮助用户看代码结构比较复杂的程序,功能类似SOURCE INSIGHT(Kelp is a source code analysis software to help users look more complicated code structure of procedures, functions similar SOURCE INSIGHT)
- 2007-09-16 10:20:25下载
- 积分:1
-
fisherface
Eigenfaces: PCA tends to find a p-dimensional subspace
whose basis vectors correspond to the maximum
variance direction in the original image space (p N).
We called the new subspace defined by basis vectors “face
space”. First, all training faces are projected onto the face
space to find a set of weights that describes the contribution
of each vector. Then we project all testing faces onto the
face space to obtain a set of weights. Finally, we identify
the face by comparing a set of weights for the testing face
to sets of weights of training faces.
- 2010-11-20 17:00:21下载
- 积分:1