代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/347363/11670953

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/157403/11710050

s tct.s

;************************************************************************ ;* ;* Copyright Mentor Graphics Corpora
www.eeworm.com/read/260385/11729876

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/259580/11780631

output circularlistwithheader.output

Initial size of y and z = 0, 0 Inserted 6 integers, list y should be 1 2 3 4 5 6 Size of y = 6 1 2 3 4 5 6 Testing overloaded
www.eeworm.com/read/156676/11785403

h scan.h

#ifndef _SCAN_H #define _SCAN_H #include #ifndef INITIAL #define INITIAL 0 #endif #endif
www.eeworm.com/read/156614/11788939

credits

# # Here is a list of people who have contributed to the ARMboot project. # If you feel you should be mentioned here, please send a mail to me # to fix this! # # Thanks a lot, folks! # # Marius
www.eeworm.com/read/344792/11859986

v loop2.v

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

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/344792/11860212

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/155600/11861276

m example_3_sor.m

% Twodimensional heat conduction % Finite Volume Method % SOR clear all; x=[];y=[];T=[];Told=[];Su=[];Sp=[];ap=[];ae=[];aw=[];as=[];an=[]; great = 1.e20; lambda = 10; % thermal conductivity alf