-
fir_lab
Fir implementation on MATLAB and ccs
- 2009-05-23 14:50:02下载
- 积分:1
-
myfuzzy
说明: 自己编的一些关于matlab 模糊整定的例子,两个例子,由于很久没看了,忘了哪几个是了,都是高手自己看着整吧,哈(own series of the number of Matlab fuzzy setting the example, two examples, since a long time not read, forget what the number is, are their own masters watching the whole bar, Kazakhstan)
- 2006-03-30 11:38:54下载
- 积分:1
-
Robot_solution
该程序包含六自由度机器人D-H法建模的正解和逆解程序(Positive solution and inverse solution program The program contains six degree of freedom robot DH Modelling)
- 2014-12-08 21:45:06下载
- 积分:1
-
MATLABtfa
目标因子分析,用于找寻主因子数的个数,用途广泛(Target factor analysis, to find the main number for the number of factors, versatile)
- 2014-01-14 13:10:55下载
- 积分:1
-
data
Elman神经网络的数据预测—电力负荷预测模型研究(neural network data test,research of electric power)
- 2019-04-01 10:20:32下载
- 积分:1
-
matlab
这是《Numerical Methods with MATLAB: Implementation and Application》一书的配书程序(Matlab)(matlab code for "Numerical Methods with MATLAB: Implementation and Application")
- 2009-04-18 18:32:24下载
- 积分: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
-
DSppart12
From the partial fraction expansion of H(z) we can find a, b
- 2009-04-11 12:08:50下载
- 积分:1
-
Bearingplotscustom
Hydrodynamic bearing calculation program
- 2012-07-21 11:03:41下载
- 积分:1
-
Bidirectional-RRT
双向RRT算法,可以生成随机地图,然后通过带对比择优的双向RRT算法完成路径规划.可以在matlab下正确运行(bidirectional RRT path planning based on comparison optimization )
- 2021-04-26 12:38:45下载
- 积分:1