代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/492189/6424966
m fe.m
clear;clc; % delete variables from memory
a=0;% endpoints of the interval
N=10;
h=0.1% number of small intervals (will give us N+1 points in the interval)
b=h*N;
t=0;% the spacing between
www.eeworm.com/read/491772/6434350
c main.c
//cd wxl
#include
#define uint unsigned int
#define uchar unsigned char
#define DELAY 10000
//小灯控端口定义
#define RLED P1_0
#define YLED P1_1
/**********************************
www.eeworm.com/read/491340/6438863
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/491340/6438970
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/490544/6447343
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/488267/6491114
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/486514/6534243
c 例7-7.c
#include "reg51.h"
#define ON 1
#define OFF 0
sbit Lamp1=P0^0;
sbit Lamp2=P0^1;
sbit Lamp3=P0^0;
sbit Lamp4=P0^1;
sbit Lamp5=P0^0;
sbit Lamp6=P0^1;
sbit Lamp7=P0^0;
sbit Lamp8=P0^1;
www.eeworm.com/read/486274/6538998
m bairstow.m
% 2008.04.25 2006037346 Lee Won Il
% Finding Roots Of Polynomial with Bairstow's Method
clear
n= input('Order of polynomial = ');
a= input('Coefficients (f
www.eeworm.com/read/484439/6576396
txt sqlconstr.txt
Data Source=.;Initial Catalog=110901db;Integrated Security=True