代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/330850/12864968

m hmm_forward_backward.m

function [a, b] = HMM_Forward_Backward(a, b, V) % Find the probability transition matrices a,b from sample data using the forward-backward algorithm % % Inputs: % a - Initial estimate of the
www.eeworm.com/read/143521/12868265

v random_tp.v

`timescale 10ns/1ns module random_tp; integer data; integer i; parameter delay=10; initial $monitor($time,,,"data=%b",data); initial begin for(i=0; i
www.eeworm.com/read/143521/12868308

v time_dif.v

`timescale 10ns/1ns module time_dif; reg ts; parameter delay=2.6; initial begin #delay ts=1; #delay ts=0; #delay ts=1; #delay ts=0; end initial $monitor($time,,,"
www.eeworm.com/read/143521/12868312

v mult_tp.v

`timescale 10ns/1ns module mult_tp; reg[7:0] a,b; wire [15:0] out; integer i,j; mult8 m1(out,a,b); initial begin a=0;b=0; for(i=1;i
www.eeworm.com/read/244381/12869656

m inc_pend.m

function x0 = inc_pend % % Initial conditions for the triple inverted pendulum. % % x(1) = Theta(1) % x(2) = Theta(2) % x(3) = Theta(3) % x(4) = dTheta(1)/dt % x(5) = dTheta(2)/dt % x(6
www.eeworm.com/read/244343/12871786

txt ecma-285-asn.txt

-- -- This file has been derived from ECMA-285, 2nd Edition. -- -- The following errata have been applied (December 2000): -- -- clause 9.5: "MonitorObject ::= CSTAObject;" replaced with --
www.eeworm.com/read/143368/12881049

cpp ex14.cpp

//第14章 迈入面向对象编程部分 //[例14.1]用结构实现求两个数的和(函数通过CA*const型的形参操作结构CA中的成员) #include struct CA { int m;long n; };//声明一个结构CA,它有两个不同类型的数据成员 inline void
www.eeworm.com/read/243723/12920676

c hellowin.c

/*------------------------------------------------------------ HELLOWIN.C -- Displays "Hello, Windows 98!" in client area (c) Charles Petzold, 1998 ---------------------------
www.eeworm.com/read/243682/12924693

txt abap.txt

/L20"ABAP/4" FORTRAN_LANG Nocase Line Comment Num = 1* Line Comment Alt = " Escape Char = @ File Extensions = abap txt /Delimiters = ~!@%^&*()-+=|\/{}[]:;"' , ? /Function String = "select " /Func
www.eeworm.com/read/243541/12934962

v tcounter.v

// download from: www.pld.com.cn & www.fpga.com.cn module test_counter; reg clk, rst; wire [7:0] count; counter #(5,10) dut (count,clk,rst); initial // Clock generator begin cl