代码搜索:Tracking
找到约 2,832 项符合「Tracking」的源代码
代码结果 2,832
www.eeworm.com/read/148489/12463448
m chap10_1plot.m
close all;
figure(1);
plot(t,e,'r');
xlabel('time(s)');ylabel('error');
figure(2);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('position tracking');
figure(3);
plot(t,dy(:,
www.eeworm.com/read/148489/12463454
m chap10_3plot.m
close all;
figure(1);
plot(t,e,'r');
xlabel('time(s)');ylabel('error');
figure(2);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('position tracking');
figure(3);
plot(t,dy(:,
www.eeworm.com/read/232116/14208216
cpp gsv.cpp
#include "nmea0183.h"
#pragma hdrstop
/*
** Author: Samuel R. Blackburn
** Internet: sam_blackburn@pobox.com
**
** You can use it any way you like as long as you don't try to sell it.
**
**
www.eeworm.com/read/227464/14424105
makefile
# Makefile for building tracking library
#
include ../generic.mk
all:
cd $(OS);$(MAKE) libtracking.a
clean:
cd $(OS); $(MAKE) clean
.DEFAULT:
cd $(OS); $(MAKE) $<
www.eeworm.com/read/227051/14442387
m chap10_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,'r');
xlabel('time(s)');ylabel('initial control input');
figure(3
www.eeworm.com/read/227048/14442418
m chap5_4plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(t,y(:,1)-y(:,2),'r');
xlabel('time(s)');ylabel('Position tracking error'
www.eeworm.com/read/227048/14442467
m chap8_4plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('speed tracking');
figure(2);
plot(t,y(:,1)-y(:,2),'r');
xlabel('time(s)');ylabel('speed tracking error');
www.eeworm.com/read/227048/14442475
m chap9_5plot.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/227046/14442673
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/227046/14442685
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');