代码搜索:Tracking
找到约 2,832 项符合「Tracking」的源代码
代码结果 2,832
www.eeworm.com/read/165143/10075122
m chap6_1plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(t,u(:,1),'r');
xlabel('time(s)');ylabel('Control input');
www.eeworm.com/read/165143/10075125
m chap6_2plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(t,u(:,1),'r');
xlabel('time(s)');ylabel('Control input');
www.eeworm.com/read/165143/10075153
m chap6_3plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(t,u(:,1),'r');
xlabel('time(s)');ylabel('Control input');
figure(3);
www.eeworm.com/read/165142/10075155
m chap5_4plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time');ylabel('position tracking');
figure(2);
plot(t,u(:,1),'r');
xlabel('time');ylabel('control input');
figure(3);
cc=25
www.eeworm.com/read/165142/10075170
m chap5_5plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(t,u(:,1),'r');
xlabel('time(s)');ylabel('Control input');
figure(3);
www.eeworm.com/read/165137/10075180
m chap3_5plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('position tracking');
figure(2);
c=10;
plot(e,de,'r',e,-c*e,'b');
xlabel('e');ylabel('de');
figure(3);
pl
www.eeworm.com/read/165131/10075302
m chap2_7plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(Ff(:,1),Ff(:,2),'r');
xlabel('Angle speed');ylabel('Friction force');
www.eeworm.com/read/165131/10075322
m chap2_8plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(t,u(:,1),'r');
xlabel('time(s)');ylabel('Control input');
c=5;
figur
www.eeworm.com/read/163199/10170910
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/163199/10170922
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');