代码搜索:CLOSE
找到约 10,000 项符合「CLOSE」的源代码
代码结果 10,000
www.eeworm.com/read/106259/7094440
pas rycxsz.pas
unit rycxsz;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Buttons, ExtCtrls;
type
TrycxszForm = class(TForm)
Panel1: TPanel
www.eeworm.com/read/170226/7097594
pl svdrpsend.pl
#!/usr/bin/perl
use Socket;
use Getopt::Std;
$Usage = qq{
Usage: $0 options command...
Options: -d hostname destination hostname (default: localhost)
-p port SVDRP port n
www.eeworm.com/read/371215/7105298
java context.java
package newsserver;
import java.sql.*;
import javax.naming.*;
import javax.sql.*;
import java.util.*;
/**
* Title:
*
* Description: server for news
*
* Copyright:
www.eeworm.com/read/460712/7105398
m chap9_5plot.m
close all;
figure(1);
subplot(211);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
subplot(212);
plot(t,y(:,1)-y(:,2),'r');
xlabel('time(s)');ylabel('Position
www.eeworm.com/read/460712/7105425
m chap7_6plot.m
close all;
figure(1);
plot(t,fm,'r',t,fs,'b');
xlabel('time(s)');ylabel('fm,fs');
figure(2);
plot(t,xm,'r',t,xs,'b');
xlabel('time(s)');ylabel('xm,xs');
figure(3);
plot(t,tolm,'r');
xla
www.eeworm.com/read/460712/7105429
m chap7_2plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
c=25;
plot(e(:,1),e(:,2),'r',e(:,1),-c*e(:,1),'b');
xlabel('e');ylabel('de')
www.eeworm.com/read/460712/7105498
m chap4_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,y(:,1)-y(:,2),'r');
xlabel('time(s)');ylabel('Position tracking error'
www.eeworm.com/read/460712/7105499
m chap4_2mf.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/460712/7105505
m chap4_7mf.m
%From SMC book: 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);
ho