代码搜索:pendulum

找到约 574 项符合「pendulum」的源代码

代码结果 574
www.eeworm.com/read/227046/14442757

m chap7_12f.m

function dx=dym(t,x,flag,para) global A B C D u=para; dx=zeros(4,1); %State equation for one link inverted pendulum dx=A*x+B*u;
www.eeworm.com/read/227046/14442763

m chap7_11f.m

function dx=dym(t,x,flag,para) global A B C D u=para; dx=zeros(4,1); %State equation for one link inverted pendulum dx=A*x+B*u;
www.eeworm.com/read/227046/14442766

m chap7_12.m

%Single Link Inverted Pendulum Control clear all; close all; global A B C D %Single Link Inverted Pendulum Parameters g=9.8; M=1.0; m=0.1; L=0.5; Fc=0.0005; Fp=0.000002; I=1/12*m*L^2;
www.eeworm.com/read/225665/14526535

m chap7_12f.m

function dx=dym(t,x,flag,para) global A B C D u=para; dx=zeros(4,1); %State equation for one link inverted pendulum dx=A*x+B*u;
www.eeworm.com/read/225665/14526543

m chap7_11f.m

function dx=dym(t,x,flag,para) global A B C D u=para; dx=zeros(4,1); %State equation for one link inverted pendulum dx=A*x+B*u;
www.eeworm.com/read/225665/14526545

m chap7_12.m

%Single Link Inverted Pendulum Control clear all; close all; global A B C D %Single Link Inverted Pendulum Parameters g=9.8; M=1.0; m=0.1; L=0.5; Fc=0.0005; Fp=0.000002; I=1/12*m*L^2;
www.eeworm.com/read/222611/14683550

m chap7_12f.m

function dx=dym(t,x,flag,para) global A B C D u=para; dx=zeros(4,1); %State equation for one link inverted pendulum dx=A*x+B*u;
www.eeworm.com/read/222611/14683560

m chap7_11f.m

function dx=dym(t,x,flag,para) global A B C D u=para; dx=zeros(4,1); %State equation for one link inverted pendulum dx=A*x+B*u;
www.eeworm.com/read/222611/14683563

m chap7_12.m

%Single Link Inverted Pendulum Control clear all; close all; global A B C D %Single Link Inverted Pendulum Parameters g=9.8; M=1.0; m=0.1; L=0.5; Fc=0.0005; Fp=0.000002; I=1/12*m*L^2;
www.eeworm.com/read/122236/14712473

m nndpend.m

function yprime = nndpend(t,y) %NNDPEND Dynamical model of a pendulum. % % NNDPEND(T,Y) % T - Time % Y - State = [angle; angular velocity] % Returns Derivative of state vector. % First