代码搜索结果

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

mesg.m

%MESG Display progress information. % MESG subroutine displays progress status when performing MIMO system % performance measurement. Therefore it makes no sense to run this % routine alone.

useralg_pre.m

function q = useralg_pre(X) % This is a sparseness measurement algorithm defined by the user. % X: Observations % q: result

bshfun.asv

function [y] = bshfun(x,u,t); % PURPOSE : Measurement model function. % INPUTS : - x: The evaluation point in the domain. % OUTPUTS : - y: The value of the function at x. if nargin < 3, error('Not

hfun.asv

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. if nargin < 2, error('Not enough

ukf_bshfun.m

function [y] = ukf_bshfun(x,u,n,t); % PURPOSE : Measurement model function for UKF % INPUTS : - x: The evaluation point in the domain. % : - u: exogenous inputs % : - n: measureme

bshfun.m

function [y] = bshfun(x,u,t); % PURPOSE : Measurement model function. % INPUTS : - x: The evaluation point in the domain. % OUTPUTS : - y: The value of the function at x. % AUTHORS : Nando de Fre

ukf_bshfun.asv

function [y] = ukf_bshfun(x,u,n,t); % PURPOSE : Measurement model function for UKF % INPUTS : - x: The evaluation point in the domain.: - u: exogenous inputs % : - n: measurement noise %

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

initialvalues.java

//: c04:InitialValues.java // From 'Thinking in Java, 2nd ed.' by Bruce Eckel // www.BruceEckel.com. See copyright notice in CopyRight.txt. // Shows default initial values. class Measurement {