代码搜索:Update
找到约 10,000 项符合「Update」的源代码
代码结果 10,000
www.eeworm.com/read/179398/9358492
chf cvboundingrect.chf
#include
#include
CvRect cvBoundingRect(const void* points, int update) {
void *fptr;
CvRect retval, *temp;
fptr = dlsym(_Chcv_handle, "cvBoundingRect_chdl");
www.eeworm.com/read/375429/9360195
sql trigger reminder.sql
use test
if exists(select name from sysobjects where name='reminder' and type='TR')
drop trigger reminder
go
create trigger reminder on XS
for insert,update
as
raiserror(4008,16
www.eeworm.com/read/179061/9375449
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/179061/9375456
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/179061/9375459
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/178344/9407167
m chap7_9.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