代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/142261/12954031

m wave1.m

function [t,x,U] = wave1 (T,a,m,n,beta,f,g) %---------------------------------------------------------------------- % Usage: [t,x,U] = wave1 (T,a,m,n,beta,f,g); % % Description: Use the expl
www.eeworm.com/read/243115/12961358

s tct.s

;/*************************************************************************/ ;/* */ ;/* Copyright (c) 1993-1994 Accelera
www.eeworm.com/read/329030/12988780

c dbmtask.c

/***************************************************************************** FILE NAME: dbmtask.c DESCRIPTION: This file contains the Data Base Manager (DBM) task routines. T
www.eeworm.com/read/329030/12988781

c dbmver.c

/***************************************************************************** * * FILE NAME : dbmver.c * * DESCRIPTION : Unit version information * * HISTORY : * See Log at end of fi
www.eeworm.com/read/140697/13066827

m alg054.m

% ADAMS-FOURTH ORDER PREDICTOR-CORRECTOR ALGORITHM 5.4 % % To approximate the solution of the initial value problem % y' = f(t,y), a
www.eeworm.com/read/140697/13067021

m alg054.m

% ADAMS-FOURTH ORDER PREDICTOR-CORRECTOR ALGORITHM 5.4 % % To approximate the solution of the initial value problem % y' = f(t,y), a
www.eeworm.com/read/327073/13100596

c 数据结构3.c

#include void main() { struct childrec/*定义结构体*/ { char initial; /* 姓名首字母 */ int age; /* 年龄 */ int grade; /* 考试成绩 */ }boy,girl;
www.eeworm.com/read/139802/13130162

c 数据结构3.c

#include void main() { struct childrec/*定义结构体*/ { char initial; /* 姓名首字母 */ int age; /* 年龄 */ int grade; /* 考试成绩 */ }boy,girl;
www.eeworm.com/read/326428/13142830

v loop2.v

module loop2; integer i; initial begin i=0; while(i
www.eeworm.com/read/326428/13142832

v loop3.v

module loop3; integer i; initial begin i=0; repeat(4) begin $display ("i=%h",i); i=i+1; end end endmodule