代码搜索结果

找到约 2,425 项符合 Measurement 的代码

chap7_9.m

%Kalman filter %x=Ax+B(u+w(k)); %y=Cx+D+v(k) clear all; close all; ts=0.001; M=3000; %Continuous Plant a=25;b=133; sys=tf(b,[1,a,0]); dsys=c2d(sys,ts,'z'); [num,den]=tfdata(dsys,'v');

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

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

chap7_8.m

%Kalman filter %x=Ax+B(u+w(k)); %y=Cx+D+v(k) clear all; close all; ts=0.001; M=3000; %Continuous Plant a=25;b=133; sys=tf(b,[1,a,0]); dsys=c2d(sys,ts,'z'); [num,den]=tfdata(dsys,'v');

initialvalues.java

class Measurement { boolean t; char c; byte b; short s; int i; long l; float f; double d; void print() { System.out.println( "Data type Inital value\n" +

closepsat.m

% CLOSEPSAT clear all PSAT global variables from workspace % % CLOSEPSAT % % Author: Federico Milano % Date: 22-Feb-2004 % Version: 1.0.0 % % E-mail: Federico.Milano@uclm.es % Web-site:

xfirst.m

function xfirst(a) global DAE if ~a.n, return, end DAE.x(a.alpha) = 0; DAE.x(a.Pm) = 0; idx = find(~a.con(:,7)); if ~isempty(idx) warn(a,idx,'Measurement time constant Tm cannot be 0. Tm = 1e-3 w

tio4_mes_main.c

/*""FILE COMMENT""***************************************************** * M32R C Programming Rev. 1.00 * < Sample Program for TIO4 measure clear input (main routine) > * * Copyright (c) 200

closepsat.m

% CLOSEPSAT clear all PSAT global variables from workspace % % CLOSEPSAT % % Author: Federico Milano % Date: 22-Feb-2004 % Version: 1.0.0 % % E-mail: Federico.Milano@uclm.es % Web-site:

xfirst.m

function xfirst(a) global DAE if ~a.n, return, end DAE.x(a.alpha) = 0; DAE.x(a.Pm) = 0; idx = find(~a.con(:,7)); if ~isempty(idx) warn(a,idx,'Measurement time constant Tm cannot be 0. Tm = 1e-3 w