代码搜索:Tracking
找到约 2,832 项符合「Tracking」的源代码
代码结果 2,832
www.eeworm.com/read/460712/7105782
m qftdm1_plot.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/460712/7105907
m chap8_2plot.m
close all;
figure(1);
plot(t,x(:,1),'r',t,x(:,2),'b');
xlabel('time(s)');ylabel('position tracking');
figure(2);
plot(t,tol(:,1),'r');
xlabel('time(s)');ylabel('tol');
www.eeworm.com/read/460712/7105912
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/460712/7105919
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/460712/7105924
m chap6_4plot.m
close all;
figure(1);
plot(t,x(:,1),'r',t,x(:,6),'b');
xlabel('time(s)');ylabel('position tracking of link');
figure(2);
plot(t,tol,'r');
xlabel('time(s)');ylabel('Control input');
www.eeworm.com/read/460712/7105927
m chap6_1plot.m
close all;
figure(1);
subplot(211);
plot(t,yd(:,1),'r',t,y(:,1),'b');
xlabel('time(s)');ylabel('Position tracking');
subplot(212);
plot(t,yd(:,2),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('
www.eeworm.com/read/460712/7105928
m chap6_2plot.m
close all;
L1=-5;
L2=5;
L=L2-L1;
T=L*1/1000;
x=L1:T:L2;
figure(1);
for i=1:1:9
gs=-0.5*(x+2-(i-1)*0.5).^2;
u=exp(gs);
hold on;
plot(x,u);
end
xlabel('x');ylabel('Membersh
www.eeworm.com/read/460712/7105931
m chap6_7plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(t,P(:,1),'r');
xlabel('time(s)');ylabel('control input');
figure(3);
www.eeworm.com/read/460712/7105937
m chap6_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,ut(:,1),'r');
xlabel('time(s)');ylabel('Control input');
figure(3);
pl
www.eeworm.com/read/460712/7105954
m chap6_9plot.m
close all;
figure(1);
plot(t,v(:,1),'r',t,v(:,2),'b');
xlabel('time(s)');ylabel('velocity tracking');
figure(2);
plot(t,F(:,2),'r',t,F(:,1),'b');
xlabel('time(s)');ylabel('angle tracking');