代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/264046/11331691

m prepz.m

function [x, m, s] = prepz(z, sel, bas, nz, sc, dt) % PREPZ Prepare data for input-output modelling % % [z,m,s]=prepz(z,sel,bas,nz,sc,dt) % % z: I-O data, [Y,U1,...,Unu] where Y and Ui are colum
www.eeworm.com/read/409107/11358114

txt 00readme.txt

FatFs/Tiny-FatFs Module Source Files R0.06 (C)ChaN, 2008 FILES ff.h Common include file for FatFs and application module. ff.c FatFs module. tff.h Com
www.eeworm.com/read/262668/11396020

txt 新建 文本文档.txt

module sort4(clk,reset,ra,rb,rc,rd,a); output [7:0] ra,rb,rc,rd; input [7:0] a; input clk,reset; reg [7:0] ra,rb,rc,rd; reg [7:0] memo[3:0]; integer i,j; initial i=0; initial j=0; task ex
www.eeworm.com/read/407662/11412463

m gold.m

% This code is written for educational purpose. % This Gold code generator is using (5,3) and (5,4,3,2) ML generators. % If you have any question, contact Prof. Hyoung Joong Kim % through khj@kangw
www.eeworm.com/read/407559/11415552

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/407545/11416389

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/407545/11416390

m untitled2.m

n=3; %number of state q=0.1; %std of process r=0.1; %std of measurement Q=q^2*eye(n); % covariance of process R=r^2; % covariance of measurement f=@(x)[x(2);x(3);0.05*x(1)*(x
www.eeworm.com/read/407009/11431306

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/405708/11459051

sv 06.07.00_snippet-2.sv

/********************************************************************** * Block labels versus block names * * Author: Stuart Sutherland * * (c) Copyright 2003, Sutherland HDL, Inc. *** ALL RIGHTS
www.eeworm.com/read/405283/11467012

c 数据结构3.c

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