代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/278947/10486480

m learning_the_extended_kalman_filter.m

function [x,P]=ekf(fstate,x,P,hmeas,z,Q,R) % EKF Extended Kalman Filter for nonlinear dynamic systems % [x, P] = ekf(f,x,P,h,z,Q,R) returns state estimate, x and state covariance, P % for nonlin
www.eeworm.com/read/352839/10501853

src avr.src

[Files] initial.c main.c [Headers] main.h ..\..\..\icc\include\iom16v.h [Documents]
www.eeworm.com/read/160515/10523516

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/352662/10529066

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/352500/10547022

asm example 4-5.asm

;Example 4 - 5. Modified Direct-I IIR Filter ASM Listing for the TMS320C54x DSP ;*************************************************************** ; New IIR Low pass filter design ; Language : C5
www.eeworm.com/read/159869/10605867

v loop2.v

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

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/159869/10606258

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/159770/10618653

c 数据结构3.c

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

c cokus.c

// This is the ``Mersenne Twister'' random number generator MT19937, which // generates pseudorandom integers uniformly distributed in 0..(2^32 - 1) // starting from any odd seed in 0..(2^32 - 1). Th