代码搜索结果

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

add_observation_noise.m

function z= add_observation_noise(z,R, addnoise) %function z= add_observation_noise(z,R, addnoise) % % Add random measurement noise. We assume R is diagonal. if addnoise == 1 len= size(

observe_heading.m

function observe_heading(phi, useheading) %function observe_heading(phi, useheading) % % Perform state update for a given heading measurement, phi, % with fixed measurement noise: sigmaPhi global

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.

measure.c

/*------------------------------------------------------------------------------ MEASURE.C: Remote Measurement Recorder using the C51 COMPILER Copyright 1990-2003 Keil Software, Inc. -----------

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.

sonar_anal.m

function sonar_anal(fig) % SONAR_ANAL is a callback for the sonar demo (tof.m). % user data ud=get(fig,'userdata'); ai=ud.ai; ao=ud.ao; h=ud.h; txt=h.text1; % measurement y=getdata(ai);

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 {

add_observation_noise.m

function z= add_observation_noise(z,R, addnoise) % Add random measurement noise. We assume R is diagonal. if addnoise == 1 len= size(z,2); if len > 0 z(1,:)= z(1,:) + randn(

hfun.asv

function [y] = hfun(x,t); % PURPOSE : Measurement model function . % INPUTS : - x: Hidden state % : - u: control vector % - n: Measurement noise % - t: time index or

sirling_hfun.asv

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