代码搜索:Update
找到约 10,000 项符合「Update」的源代码
代码结果 10,000
www.eeworm.com/read/195831/8127806
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/195616/8138107
java dinputbean.java
package Beans;
import java.sql.*;
public class DinputBean implements java.io.Serializable {
private String id;
private String hel;
public String getHel() {
return hel;
}
public void
www.eeworm.com/read/395970/8139888
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/395970/8140179
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/146233/12662673
h align.h
//----------------------------------------------------------------------------------------------------
// ID Code : Align.h No.0000
// Update Note :
//
//-----------------------------------
www.eeworm.com/read/333652/12666762
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/333652/12666770
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/333652/12666775
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/247307/12667073
c iir.c
//IIR.c IIR filter using cascaded Direct Form II
//Coefficients a's and b's correspond to b's and a's from MATLAB
#include "DSK6713_AIC23.h" //codec-DSK support file
Uint32 fs=DSK6713_AIC23_FRE