代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/484493/6577807

m ex28ch2.m

function ex28ch2 % The ball is at (x(t),y(t)). % Here y(1) = x(t), y(2) = x'(t), y(3) = y(t), y(4) = y'(t). clc % Set initial height and coefficient of restitution: y0 = [0; 0; 2; 0]; k = 0.70; k = 0
www.eeworm.com/read/483758/6594593

aspx config.aspx

sub dbcon Bcon = New sqlConnection("data source=micron;uid=sa;pwd=admin;initial catalog=gsmlanka") cartCon= New sqlConnection("data source=micron;uid=sa;pwd=admin;ini
www.eeworm.com/read/483608/6599586

v loop2.v

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

v loop3.v

module loop3; integer i; initial begin i=0; repeat(4) begin $display ("i=%h",i); i=i+1; end end endmodule
www.eeworm.com/read/483608/6599687

v adder_tp.v

`timescale 1ns/1ns `include "adder4.v" module adder_tp; reg[3:0] a,b; reg cin; wire[3:0] sum; wire cout; integer i,j; adder4 adder(sum,cout,a,b,cin); always #5 cin=~cin; initial begin
www.eeworm.com/read/482665/6620847

m bisection.m

function rtn=bisection(fx,xa,xb,n) % Bisection Method % The first parameter fx is a external function with respect to viable x. % xa is the left point of the initial interval % xb is the right poi
www.eeworm.com/read/481648/6636860

v loop2.v

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

v loop3.v

module loop3; integer i; initial begin i=0; repeat(4) begin $display ("i=%h",i); i=i+1; end end endmodule
www.eeworm.com/read/481648/6636960

v adder_tp.v

`timescale 1ns/1ns `include "adder4.v" module adder_tp; reg[3:0] a,b; reg cin; wire[3:0] sum; wire cout; integer i,j; adder4 adder(sum,cout,a,b,cin); always #5 cin=~cin; initial begin
www.eeworm.com/read/481249/6646484

c 数据结构3.c

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