代码搜索:CLOSE

找到约 10,000 项符合「CLOSE」的源代码

代码结果 10,000
www.eeworm.com/read/460712/7106005

m chap3_10plot.m

close all; figure(1); plot(t,x(:,1),'r',t,x(:,2),'b'); xlabel('time(s)');ylabel('position tracking'); figure(2); plot(t,w,'r'); xlabel('time(s)');ylabel('w'); figure(3); plot(t,u,'r');
www.eeworm.com/read/460712/7106007

m chap3_4plot.m

close all; figure(1); plot(t,x(:,1),'r',t,x(:,2),'b'); xlabel('time(s)');ylabel('position tracking'); figure(2); plot(t,tol1(:,1),'r'); xlabel('time(s)');ylabel('tol1'); figure(3); plot(
www.eeworm.com/read/154303/7107096

txt ex8_15.txt

Example 8.15 Service Activator client: OrderDispatcherFacade.java // imports. . . public class OrderDispatcherFacade implements javax.ejb.SessionBean { . . . // business method to create new
www.eeworm.com/read/189342/7114939

c creattmp.c

#include #include #include void main(void) { char path[64] = "C:\\TEMP\\"; int handle; if ((handle = creattemp(path, 0)) == -1) printf("Error cr
www.eeworm.com/read/189342/7115392

cpp filecopy.cpp

#include #include #include void main(int argc, char **argv) { char buffer[1]; ifstream input(argv[1], ios::in); if (input.fail()) {
www.eeworm.com/read/288559/7115782

smakefile

/*********************************************************** smakefile 注:如一行命令太长了,可用反斜杠(即”\”)来换行。 ************************************************************/ filsys: main.o igetput.o
www.eeworm.com/read/288559/7115794

smakefile

/*********************************************************** smakefile 注:如一行命令太长了,可用反斜杠(即”\”)来换行。 ************************************************************/ filsys: main.o igetput.o
www.eeworm.com/read/207249/7116053

cs login.aspx.cs

using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System
www.eeworm.com/read/452185/7117578

txt jspconnectivitydatabaseguinness.txt

一、jsp连接Oracle8/8i/9i数据库(用thin模式) testOracle.jsp如下:
www.eeworm.com/read/435060/7119006

c cp.c

//copies one file to another #include #include #define BUFSIZE 1024 #include int main(int argc ,char **argv) { int fd1,fd2; int n,j; char buf[BUFSIZE];