代码搜索结果

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

hfun.m

function [y] = hfun(x,t); % PURPOSE : Measurement model function. % INPUTS : - x: The evaluation point in the domain. % OUTPUTS : - y: The value of the function at x. % AUTHORS : % DATE : if

ukf_hfun.m

function [y] = ukf_hfun(x,u,n,t); % PURPOSE : Measurement model function fpr UKF. % INPUTS : - x: Hidden state % : - u: control vector % - n: Measurement noise % - t

readmeasurement.m

%%% DynaEst 3.032 10/22/2000 % Copyright (c) 2000 Yaakov Bar-Shalom % % ReadMeasurement, Read Measurement from external measurement file fid = fopen(Project_Measurement_Filename,'rt'); if fid

selectexportmeasurement.m

%%% DynaEst 3.032 10/22/2000 % Copyright (c) 2000 Yaakov Bar-Shalom % % SelectMeasurement, select a measurement filename to export measurement set(h_HeadTitle, 'String','Measurement export file:

selectimportmeasurement.m

%%% DynaEst 3.032 10/22/2000 % Copyright (c) 2000 Yaakov Bar-Shalom % % SelectExternalFile, Select External Measurement File new_title=1; if (exist('h_HeadTitle') == 0) else if ishandle(h_H

observationmodel.m

%%% DynaEst 3.032 01/02/2001 % Copyright (c) 2000 Yaakov Bar-Shalom % % Subfunction ObservationModel : generate observation model for ground truth and measurement function [Ht,It,Rt] = Observati

exportmeasurement.m

%%% DynaEst 3.032 11/22/2000 % Copyright (c) 2000 Yaakov Bar-Shalom % % ExportMeasurement, export measurement switch SimulationFlag case {1,2,3} GenerateMeasurement ; case 4 end fid

xzgen.m

%%% DynaEst 3.032 10/22/2000 % Copyright (c) 2000 Yaakov Bar-Shalom % %Xzgen generate the true state and the measurement at time k %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

hfun.m

function [y] = hfun(x,t); % PURPOSE : Measurement model function. % INPUTS : - x: The evaluation point in the domain. % OUTPUTS : - y: The value of the function at x. % AUTHORS : % DATE : if

k_ud.m

function [X,P] = k_ud(X,P,H,Y,R) % K_UD Kalman update, one measurement per call % Observation covariance R % Written by Kai Borre and C.C. Goad % November 24, 1996 omc = Y-H'*X;