代码搜索:Tracking

找到约 2,832 项符合「Tracking」的源代码

代码结果 2,832
www.eeworm.com/read/403567/11514792

m chap3_7plot.m

close all; figure(1); plot(t,x1(:,1),'r',t,x1(:,2),'b'); xlabel('time(s)');ylabel('position tracking for link 1'); figure(2); plot(t,x2(:,1),'r',t,x2(:,2),'b'); xlabel('time(s)');ylabel('pos
www.eeworm.com/read/403567/11514805

m chap3_9plot.m

close all; figure(1); subplot(211); plot(t,x1(:,1),'r',t,x1(:,2),'b'); xlabel('time(s)');ylabel('position tracking for link 1'); subplot(212); plot(t,x2(:,1),'r',t,x2(:,2),'b'); xlabel('time(
www.eeworm.com/read/403567/11514816

m chap3_10plot.m

close all; figure(1); plot(t,x(:,1),'r',t,x(:,2),'b'); xlabel('time(s)');ylabel('position tracking'); figure(2); plot(t,w,'r'); xlabel('time(s)');ylabel('w'); figure(3); plot(t,u,'r');
www.eeworm.com/read/403567/11514818

m chap3_4plot.m

close all; figure(1); plot(t,x(:,1),'r',t,x(:,2),'b'); xlabel('time(s)');ylabel('position tracking'); figure(2); plot(t,tol1(:,1),'r'); xlabel('time(s)');ylabel('tol1'); figure(3); plot(
www.eeworm.com/read/403565/11514827

m chap2_1plot.m

close all; figure(1); subplot(211); plot(t,x1(:,1),'r',t,x1(:,2),'b'); xlabel('time(s)');ylabel('position tracking of link 1'); subplot(212); plot(t,x2(:,1),'r',t,x2(:,2),'b'); xlabel('time(s
www.eeworm.com/read/403565/11514834

m chap2_2plot.m

close all; figure(1); subplot(211); plot(t,qd(:,1),'r',t,q(:,1),'b'); xlabel('time(s)');ylabel('position tracking of link 1'); subplot(212); plot(t,qd(:,2),'r',t,q(:,2),'b'); xlabel('time(s)'
www.eeworm.com/read/156224/11818644

htm buglogin.htm

Bug Tracking Database Bug Tracking Database
www.eeworm.com/read/155809/11845450

m chap9_1.m

%PID Control based on Lugre friction model clear all; close all; ts=0.001; u_1=0; qq=zeros(3,1); for k=1:1:15000 time(k)=k*ts; rin(k)=0.05*sin(0.1*2*pi*k*ts); drin(k)=0.05*0.1*2*pi*co
www.eeworm.com/read/155809/11845455

m chap9_4plot.m

close all; figure(1); plot(t,y(:,1),'k',t,y(:,2),'k'); xlabel('time(s)');ylabel('Position tracking'); figure(2); plot(Ff(:,1),Ff(:,2),'k'); xlabel('Angle speed');ylabel('Friction force');
www.eeworm.com/read/155809/11845547

m chap7_16.m

%Adaptive Robust Control Based on PD Term clear all; close all; global S ts=0.001; TimeSet=[0:ts:60]; a0=30; a1=20; b=50; Am=[0,1;-a0,-a1]; eig(Am) %Q=[20,0;0,20]; Q=[20,10;10,20];