代码搜索:Update
找到约 10,000 项符合「Update」的源代码
代码结果 10,000
www.eeworm.com/read/320130/13432583
m chap7_11.m
%Discrete Kalman filter for PID control
%Reference kalman_2rank.m
%x=Ax+B(u+w(k));
%y=Cx+D+v(k)
clear all;
close all;
ts=0.001;
%Continuous Plant
a=25;b=133;
sys=tf(b,[1,a,0]);
dsys=c2d(sy
www.eeworm.com/read/320130/13432587
m chap7_10f.m
%Discrete Kalman filter
%x=Ax+B(u+w(k));
%y=Cx+D+v(k)
function [u]=kalman(u1,u2,u3)
persistent A B C D Q R P x
yv=u2;
if u3==0
x=zeros(2,1);
ts=0.001;
a=25;b=133;
sys=tf(b,[1,a
www.eeworm.com/read/320130/13432589
m chap7_10.m
%Discrete Kalman filter for PID control
%Reference kalman_2rank.m
%x=Ax+B(u+w(k));
%y=Cx+D+v(k)
clear all;
close all;
ts=0.001;
%Continuous Plant
a=25;b=133;
sys=tf(b,[1,a,0]);
dsys=c2d(sy
www.eeworm.com/read/319979/13437916
inf allproducts.inf
; INF file that will be executed for all products.
[FilesCopy]
; format:
; source path, destination path, [option], [osversion], [infVals]
%cdromRootDirGet%\README.TXT,%destDirGet%\README.TXT,update
www.eeworm.com/read/319798/13442313
sql 人力资源管理实例程序.sql
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[FK_工资发放历史表_职员基本信息表]') and OBJECTPROPERTY(id, N'IsForeignKey') = 1)
ALTER TABLE [dbo].[工资发放历史表] DROP CONSTRAINT FK_工资发放历史表_职员基本信息表
www.eeworm.com/read/319014/13464347
txt 说明.txt
21:17 2007-6-26
AUTHOR BY WTT
DESCRIPTION:
所有用例中未出现的用例都有可能造成无法预计的结果。
对于部分在用例文档中未列出的,但正确的用例,可以编译通过,但不会运行。
######################################################################################
www.eeworm.com/read/319014/13464351
txt 说明.txt
21:17 2007-6-26
AUTHOR BY WTT
DESCRIPTION:
所有用例中未出现的用例都有可能造成无法预计的结果。
对于部分在用例文档中未列出的,但正确的用例,可以编译通过,但不会运行。
######################################################################################
www.eeworm.com/read/318840/13471273
m josephdv.m
function [K,Pout] = josephdv(z,R,H,P)
%
% Joseph "stabilized" Kalman filter measurement
% update as implemented by De Vries.
%
T1 = P*H';
T2 = H*T1 + R;
K = T1/T2;
T3 = .5*K*T2 - T1;
T4 = T3
www.eeworm.com/read/318604/13475218
c md5.c
/* md5.c - an implementation of the MD5 algorithm and MD5 crypt */
/*
* GRUB -- GRand Unified Bootloader
* Copyright (C) 2000, 2001 Free Software Foundation, Inc.
*
* This program is free so