-
matlab2
说明: 这是学习matlab的经典课件的第二部分,第六到九章,包含微分方程求解、代数方程与最优化问题求解、概率论与数理统计问题求解、数学问题的非传统解法等等
(This is a classic learning courseware matlab second part of the sixth to nine chapters, including the differential equation solving, algebraic equations and optimization problem solving, probability theory and mathematical statistics, problem solving, mathematical problems of non-traditional method, etc.)
- 2010-04-20 14:01:18下载
- 积分:1
-
matlab-(2)
稀疏表示的matlab小程序,欢迎来联合开发网下载!(Sparse representation matlab small procedures, welcome to the Joint Development Network download!)
- 2013-10-26 12:45:02下载
- 积分:1
-
Final
语音识别系统,在静音环境比较准确,但是假若有噪音或者其他情况会有问题,附预处理部分(Speech recognition system, in the quiet environment is accurate, but if there are noise problems or other conditions will be attached to some pretreatment)
- 2010-09-20 10:29:43下载
- 积分:1
-
HYHY
VC++调Matlab的简易程序,调出Matlab的figure图(VC++ tune simple Matlab program, bring up Matlab' s figure diagram)
- 2009-12-14 16:59:51下载
- 积分:1
-
89346492nrzrz
NRZ_RZ码以及功率谱的matlab程序。希望对大家有用
(NRZ RZ CODE AND SPECTRUM)
- 2010-12-13 14:32:49下载
- 积分:1
-
matlab1
最短路径的计算,是我自己变得,比较适合建模用,希望对大家有用.(The shortest path calculation, is my own to become more suitable for modeling with the hope that be useful to everyone.)
- 2009-12-24 22:32:40下载
- 积分:1
-
Iterative-Closest-Point-Method
icp(iterative closest point)的代码,本人已经使用过了,效果还行,总共就一个文件,所有的函数都写在这上面了(icp (iterative closest point) of the code, I have used, and the results were OK, total on a file, all of the functions are written in it.)
- 2013-07-16 19:14:03下载
- 积分:1
-
absbrake
A litle project in matlab, is simulate the ABS brake system on car.
- 2012-05-12 17:29:02下载
- 积分: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
-
LQG
LQG算法控制的三层结构在地震作用下的响应(The LQG algorithm to control the three-tier structure under the earthquake response)
- 2020-09-08 16:08:04下载
- 积分:1