代码搜索:CLOSE
找到约 10,000 项符合「CLOSE」的源代码
代码结果 10,000
www.eeworm.com/read/459244/7278272
m chap4_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,E(:,1),'r',t,E(:,2),'b');
xlabel('time(s)');ylabel('E and estimated K'
www.eeworm.com/read/459244/7278284
m chap4_9plot.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/459244/7278298
m chap4_6mf.m
clear all;
close all;
L1=-pi/6;
L2=pi/6;
L=L2-L1;
T=L*1/1000;
x=L1:T:L2;
figure(1);
for i=1:1:5
gs=-[(x+pi/6-(i-1)*pi/12)/(pi/24)].^2;
u=exp(gs);
hold on;
plot(x,u);
end
xla
www.eeworm.com/read/459244/7278300
m chap4_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');
www.eeworm.com/read/459244/7278304
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