-
wulingyu_2
关于经典倒立摆的MATLAB simulink 仿真程序,基于最优二次型的仿真程序,通过改变状态矩阵可以改变系统模拟(With regard to the classic inverted pendulum MATLAB simulink simulation program, based on the optimal quadratic-based simulation program, the state matrix can be changed by changing the system simulation)
- 2009-12-20 12:42:01下载
- 积分:1
-
灰色预测
说明: matlab灰色预测模型代码,仅供参考,非原创。(Grey-forecasting model code,for reference only,not original.)
- 2020-08-06 20:03:17下载
- 积分:1
-
thresholdOtsu
大津法实现,将灰度图像二值化,便于图像的后续处理。(Binary image dajin method
)
- 2011-06-22 23:09:44下载
- 积分:1
-
solar_pos
利用matlab实现太阳在地心惯性坐标系的位置计算,可以直接利用*.m文件运行显示。(Using matlab realize the sun in the geocentric inertial coordinate system the location of the calculation, you can directly use the*. m files to run show.)
- 2007-11-05 21:04:58下载
- 积分:1
-
ky3
voltage-boosting converter, named as KY
converter, was proposed, which provides low output voltage ripple and is very suitable for supplying power to devices that must
operate under low-ripple conditions.
- 2013-09-22 17:32:26下载
- 积分:1
-
MATLABimage
MATLAB图形技术——绘图及图形用户接口(MATLAB Graphics Technology- Graphics and graphical user interface)
- 2010-12-01 10:45:42下载
- 积分:1
-
SXHS
求水仙花数的源码,可以运行的,我是菜鸟,请大家都来指教下吧,谢谢了!(The source seeking a few daffodils, you can run, and I was rookie, let us all come under the Zhijiao bar, thank you!)
- 2010-01-08 20:31:29下载
- 积分:1
-
Handout1
Simulation Guide of MATLAB
- 2011-02-07 19:14:04下载
- 积分:1
-
Kalman_3d
对目标的运动进行了卡尔曼滤波跟踪,此程序的特点是进行了三维仿真(Kalman filter tracking the movement of the target, the characteristics of this program is a three-dimensional simulation)
- 2012-08-02 21:19:28下载
- 积分: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