代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/299736/7836247

m kalman_update.m

function [xnew, Vnew, loglik, VVnew] = kalman_update(A, C, Q, R, y, x, V, varargin) %输出状态估计,方差,协方差,以及 loglik(见注释) % KALMAN_UPDATE Do a one step update of the Kalman filter % [xnew, Vnew, loglik] = ka
www.eeworm.com/read/399787/7836343

s tct.s

;/*************************************************************************/ ;/* */ ;/* Copyright (c) 1993-2000 Accelerat
www.eeworm.com/read/299342/7866051

c spi_hc595.c

#include //*该程序用于在8个LED上依次显示1~8等8个字符*/ const int table[20]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0x88,0x83,0xc6,0xa1,0x86,0x8e,0xc2,0x89,0xff}; unsigned char data,fla
www.eeworm.com/read/434255/7879226

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/298929/7923111

java lmfunc.java

// LMfunc.java package ZS.Solve; /** * Caller implement this interface to specify the * function to be minimized and its gradient. * * Optionally return an initial guess and some test data, *
www.eeworm.com/read/298817/7933305

c 数据结构3.c

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

c dspio.c

#include "f240regs.h" //#include "register.h" initial() { asm("SETC SXM"); asm("clrc OVM"); asm("clrc CNF"); asm("setc INTM"); SCSR1=0x81FE; WDCR=0x0e8; IMR=0x0000;
www.eeworm.com/read/197561/7986145

v dec2_4_test.v

/* 2-4译码器的顶层模块 */ `timescale 1ps/1ps module DEC2_4_TEST; reg [1:0] IN; wire [3:0] OUT; DEC2_4 DEC2_4 (IN, OUT); initial begin IN
www.eeworm.com/read/297875/7990875

v loop2.v

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

v loop3.v

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