代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/412972/11172343

m dmc.m

function p=dmc(p) % DMC Dynamic Matrix Control % P=DMC(P) determines the dynamic matrix control (input change) based on % the plant model (step response) and current measurement stored in the %
www.eeworm.com/read/266379/11229064

cpp fig08_07.cpp

/** * Construct the disjoint sets object. * numElements is the initial number of disjoint sets. */ DisjSets::DisjSets( int numElements ) : s( numElements ) { for( int i = 0; i < s.size( )
www.eeworm.com/read/266379/11229434

cpp fig01_05.cpp

/** * A class for simulating an integer memory cell. */ class IntCell { public: /** * Construct the IntCell. * Initial value is 0. */ IntCell( ) { storedVal
www.eeworm.com/read/411667/11234393

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/265664/11258122

asm p1.asm

;;;;;;; P1 for QwikFlash board ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; Toggle B0 output every ten milliseconds for measuring looptime with scope. ; Blink "Alive" LED every two seconds.
www.eeworm.com/read/148256/12480390

m q809.m

%《MATLAB及在电子信息课程中的应用》第八章例8.9程序q809 % 连续和离散系统的多种输出响应曲线 % 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月初版,2003年7月第二版 % clear,clf [a,b,c,d]=rmodel(4); s1=ss(a,b,c,d);Ts=0.2; sd1=c2d(s1,Ts,'t') t=0:Ts:25; u=
www.eeworm.com/read/148157/12488657

m odefit5.m

%odefit5.m SCRIPT for ver 5.0 %USES curvefit ode45 & XPRIME TO FIT PARAM IN ODES (STATS ASSIG 4A) % DATA points tspan=[0 10 20 40 80 160 320]'; yd=[0 .19 .14 .42 .42 .41 .27]'; yd1=[0 .14 .24
www.eeworm.com/read/335820/12496702

m ekf.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/335286/12541215

v loop2.v

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

v loop3.v

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