代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/137539/13313898

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/137539/13314178

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/137285/13334949

h nn_var_str.h

int report ; /* reporting style */ int verbose ; /* verbosity 0/1/2 */ int decverbose ; /* verbosity in decoding */ int decwrite ; /* write decoding
www.eeworm.com/read/137249/13336908

s tct.s

;/*************************************************************************/ ;/* */ ;/* Copyright (c) 1993-1999 Accelerat
www.eeworm.com/read/323410/13341015

m kalman_update.m

function [xnew, Vnew, loglik, VVnew] = kalman_update(A, C, Q, 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, y, x, V
www.eeworm.com/read/136583/13370508

m kalman_update.m

function [xnew, Vnew, loglik, VVnew] = kalman_update(A, C, Q, 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, y, x, V
www.eeworm.com/read/322128/13389472

bas module1.bas

Attribute VB_Name = "Module1" Option Explicit Public con As New ADODB.Connection '数据库连接 Public a As String Public b As String Public d As String Function st(a As String, b As String, d A
www.eeworm.com/read/319906/13439898

lnp gps.lnp

"main.obj", "Port_Initial.obj", "uart.obj" TO "GPS" RAMSIZE(256)
www.eeworm.com/read/319563/13448705

m kalman_update.m

function [xnew, Vnew, loglik, VVnew] = kalman_update(A, C, Q, 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, y, x, V
www.eeworm.com/read/318986/13464734

v loop2.v

module loop2; integer i; initial begin i=0; while(i