-
ly
说明: 李雅普诺夫指数的计算,适用所有混沌系统 (Lyapunov index calculation, suitable for every system
)
- 2011-11-24 09:28:23下载
- 积分:1
-
zuisuxiajiang
实现了最速下降法的算法,具体实例操作,可运行出结果,分子程序书写,简便易懂。(The algorithm of the steepest descent method, and specific examples, you can run the results, the molecular program written in easy to understand.)
- 2012-02-15 15:12:49下载
- 积分:1
-
hough
说明: 这个是MATLAB实现Hough变换的程序。有基本的Hough变换的理解程序,也有使用Hough变换来检测信号的程序(This is the realization of Hough Transform MATLAB procedures. Hough transform a basic understanding of procedures, have also used the Hough transform to detect the signal process)
- 2008-10-19 15:39:00下载
- 积分:1
-
chapter13
通过MATLAB对常出现的数学模型进行建模,并对相关数值计算方法进行讲解(Often appear through the MATLAB mathematical model for modeling and related numerical methods to explain)
- 2011-06-27 15:45:58下载
- 积分: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
-
AC_Non_Inv_Amp
This is a matlab file which simulates ac non inv amp
- 2012-11-07 23:37:07下载
- 积分:1
-
matlab-a-VC
Vc+_+调用matlab的一个实例,包括matlab源文件,VC源文件,以及word和pdf文件说明(Vc+_+ call matlab one instance, including the matlab source file, VC source files, as well as word and pdf file description)
- 2013-07-13 16:10:42下载
- 积分:1
-
ea88b0036898
CHILD M-file for child.fig
CHILD, by itself, creates a new CHILD or raises the existing
singleton*.
H = CHILD returns the handle to a new CHILD or the handle to
the existing singleton*.
CHILD( CALLBACK ,hObject,eventData,handles,...) calls the local
function named CALLBACK in CHILD.M with the given input arguments.
CHILD( Property , Value ,...) creates a new CHILD or raises the
existing singleton*. Starting from the left, property value pairs are
applied to the GUI before child_OpeningFcn gets called. An
unrecognized property name or invalid value makes property application
stop. All inputs are passed to child_OpeningFcn via varargin.
*See GUI Options on GUIDE s Tools menu. Choose "GUI allows only one
instance to run (singleton)".
- 2012-07-06 21:14:28下载
- 积分:1
-
TSTA
多摩川编码器的相关技术参数说明文档,主要是关于TSTA和TSTB两个型号的(Related technical parameters Tamagawa encoder documentation, mainly on two models of TSTA and TSTB)
- 2014-10-29 11:19:04下载
- 积分:1
-
Matlab-program-manual
Matlab编程必备手册,包含编程格式规范,程序控制结构和实例,适用于初学者。(Matlab programming required manual contains programming format specification, program control structure and examples for beginners.)
- 2013-11-08 09:41:53下载
- 积分:1