代码搜索:Update
找到约 10,000 项符合「Update」的源代码
代码结果 10,000
www.eeworm.com/read/176503/9495652
h scan.h
/* scan.h -- some scanner related functions */
/*
This is part of cdg - a C-source Documentation Generator.
Copyright (C) 1995, 1996 Peter Knoppers.
This program is free software; you can
www.eeworm.com/read/372103/9521760
lst ad9954.lst
C51 COMPILER V8.02 AD9954 11/04/2008 10:49:49 PAGE 1
C51 COMPILER V8.02, COMPILATION OF MODULE AD9954
OBJECT MODULE PLACED IN
www.eeworm.com/read/371917/9530998
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/371917/9531007
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/371917/9531011
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/175643/9538298
h lubyrack.h
// lubyrack.h - written and placed in the public domain by Wei Dai
#ifndef CRYPTOPP_LUBYRACK_H
#define CRYPTOPP_LUBYRACK_H
#include "cryptlib.h"
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)
www.eeworm.com/read/371177/9563073
h lubyrack.h
// lubyrack.h - written and placed in the public domain by Wei Dai
#ifndef CRYPTOPP_LUBYRACK_H
#define CRYPTOPP_LUBYRACK_H
#include "cryptlib.h"
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)
www.eeworm.com/read/370867/9578631
h other.h
//把买卖后股票信息实时写入文件中 //注:time has been considered yet
void Update(Stock &stkObj);
//把买卖后用户信息实时写入文件中 //注:time has been considered yet
void Update(Guest &guestObj);
void About();
void Error();
www.eeworm.com/read/366382/9818417
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_工资发放历史表_职员基本信息表