代码搜索:Update

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

代码结果 10,000
www.eeworm.com/read/359560/10139149

h clock.h

//clock.h class Clock{ private: int hour,minute,second; public: void init(); void update(); void display(); };
www.eeworm.com/read/163563/10153871

m opfsoln.m

function [bus, gen, branch] = opfsoln(baseMVA, bus0, gen0, branch0, ... Ybus, Yf, Yt, V, Sg, lambda, ref, pv, pq, mpopt) %OTOPFSOL Updates bus, gen, branch data structures to match opf sol
www.eeworm.com/read/359099/10166160

sql 示例25.sql

USE sampleDB UPDATE student SET Class = ‘03002’ WHERE City = ‘Hainan’ GO
www.eeworm.com/read/359099/10166162

sql 示例15.sql

UPDATE student SET Year = (select Year from people where Name = 'Bruce' ) WHERE Name = 'Bruce'
www.eeworm.com/read/359099/10166170

sql 示例14.sql

UPDATE people SET Name = ‘Luna’ , City = ‘Chongqing’ WHERE Year = 1970
www.eeworm.com/read/359099/10166196

sql 示例16.sql

UPDATE student SET Year = (select Year from people where Name = 'Bush' )
www.eeworm.com/read/163199/10170989

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/163199/10170995

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/163199/10170998

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/163161/10172707

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