代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/169221/9874980

v loop2.v

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

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/169221/9875151

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/365076/9880070

m kalman_update.m

function [xnew, Vnew, K, VVnew, J, An] = kalman_update(A, C, Q, W, S, R, y, x, V, varargin) % KALMAN_UPDATE Do a one step update of the Kalman filter % [xnew, Vnew, loglik] = kalman_update(A, C, Q, R,
www.eeworm.com/read/169056/9884280

java incrementoperator.java

public class IncrementOperator { public static void main(String[] args) { int count; count = 0; System.out.println("The initial value of count is "+ count); count++;
www.eeworm.com/read/364264/9916679

m resetstate.m

function state=resetstate; %RESETSTATE Resets the state variables for the GPLAB algorithm. % RESETSTATE sets all the GPLAB algorithm state variables with the % default initial values. % %
www.eeworm.com/read/364264/9916902

m setinitialprobs.m

function initialprobs=setinitialprobs(params,state,data) %SETINITIALPROBS Sets the initial operator probabilities for the GPLAB algorithm. % SETINITIALPROBS(PARAMS,STATE,DATA) returns the initi
www.eeworm.com/read/364127/9921604

v seq4_tb.v

//----- Testbench ----- // Timescale: one time unit = 1ns (e.g., delay specification of #42 means 42ns of time), and // simulator resolution is 0.1 ns `timescale 1ns / 100ps module Counter4_TE
www.eeworm.com/read/364127/9921624

v fsm_example_tb.v

//===== Finite State Machine Example ===== //----- Testbench ----- // Timescale: one time unit = 1ns (e.g., delay specification of #42 means 42ns of time), and // simulator resolution is 0.1 ns
www.eeworm.com/read/364127/9921635

v readmemh.v

// Illustrates how to initialize a memory array from data // stored as hexadecimal values in a data file // // Simulate this file directly to see the results // // Note: The data file must reside