代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/226843/14450417

m kalman_filter.m

function [x, V, VV, loglik] = kalman_filter(y, A, C, Q, R, init_x, init_V, varargin) % Kalman filter. % [x, V, VV, loglik] = kalman_filter(y, A, C, Q, R, init_x, init_V, ...) % % INPUTS: % y(:,t) -
www.eeworm.com/read/226271/14482742

txt 说明.txt

这个是好用的加载程序,使用的时候,应该先对主程序中的flash初始化,即打开屏蔽掉的<mark>initial</mark> flash部分,对flash初始化,但这个程序不可以直接对flash初始化然后紧接着读写,因为发现这样不好用,只好分别进行,初始化完成后,屏蔽掉初始化程序,再进行读写,先将两个程序分别导入DSP,再将指针改到0xf0000就能将原主程序写入flash中去。15:33 2006-1-2 ...
www.eeworm.com/read/226066/14499823

m kalman_filter.m

function [x, V, VV, loglik] = kalman_filter(y, A, C, Q, R, init_x, init_V, varargin) % Kalman filter. % [x, V, VV, loglik] = kalman_filter(y, A, C, Q, R, init_x, init_V, ...) % % INPUTS: % y(:,t) -
www.eeworm.com/read/225993/14506047

c pgn.c

/* GNU Chess 5.0 - pgn.c - pgn game format code Copyright (c) 1999-2002 Free Software Foundation, Inc. GNU Chess is based on the two research programs Cobalt by Chua Kong-Sian and Gazebo by
www.eeworm.com/read/224421/14594083

c main.c

//=============================================================================================================== // The information contained herein is the exclusive property of // Sunnnorth Tech
www.eeworm.com/read/223469/14640040

cpp messengerserver.cpp

#include #include "Messenger_i.h" #include #include int main(int argc, char * argv[]) { try { CORBA::ORB_var orb = CORBA::ORB_init(argc,
www.eeworm.com/read/223318/14646292

h string-buffer.h

/* * iSCSI driver for Linux * Copyright (C) 2002 Cisco Systems, Inc. * maintained by linux-iscsi-devel@lists.sourceforge.net * * This program is free software; you can redistribute it and/or modi
www.eeworm.com/read/120261/14808623

l lex.l

WS [ \n\t]+ LT [A-Za-z] KR [A-Za-z0-9_\[\]\{\}/.&#$%~'@^] DI [0-9] NM {DI}*\.?{DI}+([Ee][-+]?{DI}+)? VR {LT}{KR}*()? S_OP [-+ \t\n]+ LOG []?=? %start COMMENT %% "/*" {
www.eeworm.com/read/120164/14812002

c main.c

/********************************************************************************************* * File: main.c * Author: embest * Desc: c main entry * History: ***********************************
www.eeworm.com/read/217798/14951063

m lms_adaptive_filter11.m

function LMS_adaptive_filter;%定义功能函数 samples_per_period=40;%周期采样频率 N=10*samples_per_period-1;%总采样次数 signal=sin(2*pi*0.02*[0:N-1]);%初始输入信号 figure;%作图1的第一子图 subplot(2,1,1); plot(signal); grid; t