-
刘金琨-滑模变结构控制MATLAB仿真
说明: 刘金琨所著《滑膜变结构matlab仿真》,学习滑膜经典教程(Matlab simulation of variable structure of synovium by Liu Jinkun, learning classic course of synovium)
- 2019-12-10 09:42:51下载
- 积分:1
-
CRC
CRC校验,实现基本的CRC校验功能,当mask不同时,修改也相当方便(CRC checksum, CRC checksum to achieve the basic function, when the mask is not the same time, changes are also very convenient)
- 2010-09-11 21:29:08下载
- 积分:1
-
graphAlgorithm
图论算法
graph algorithm(graph algorithm)
- 2010-12-07 22:11:23下载
- 积分: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
-
Fx_SxFz
Unitire轮胎模型与滑移率的Simulink模型(Simulink Model of Unitire Tire Model and Slip Rate)
- 2021-04-15 16:58:54下载
- 积分:1
-
pypdf
主程序为Percus Yevick分布函数和球形粒子媒质的结构因子的计算( Main program for the calculation of Percus Yevick pair distribution function and structure factor for a medium with spherical particles )
- 2011-06-03 23:35:44下载
- 积分:1
-
kalmanCA
matlab ca kalman滤波算法(matlab ca)
- 2012-11-17 22:03:14下载
- 积分:1
-
ProjetoWebProva
prova de sistemas web
- 2014-01-31 12:05:55下载
- 积分:1
-
RLEencoding
A simple (de)compression program using Run Length Encoding.
Compression is done that easy:
compressedData = rle(originalData)
Decompression:
originalData = rle(compressedData) (A simple (de) compression program using Run Length Encoding.Compression is done that easy: compressedData = rle (originalData) Decompression: originalData = rle (compressedData))
- 2007-09-09 15:44:59下载
- 积分:1
-
QPSK
This source code give the explanation about generate QPSK simulation
- 2010-07-02 02:30:21下载
- 积分:1