代码搜索结果

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

processtimes_counter.hpp

/* ///////////////////////////////////////////////////////////////////////// * File: winstl/performance/processtimes_counter.hpp (formerly winstl/processtimes_counter.hpp, winstl_processtimes

ekf_sine_dh_dx.m

% Jacobian of the measurement model function in the random sine signal demo % Copyright (C) 2007 Jouni Hartikainen % % This software is distributed under the GNU General Public % Licence (version 2

bot_h.m

% Azimuth measurement function for EKF/UKF. % % h = atan((y-sy) / (x-sx)) % % Copyright (C) 2003 Simo S鋜kk

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(

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(

ndbtick.h

/* Copyright (C) 2003 MySQL AB This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Fou

run.sh

#!/bin/bash # script for starting the measurement example; # example usage: ./run.sh minimize_jitter=0 period=300 # see rt_process.c for other parameters make rmmod rt_process insmod rt_process $* .

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(

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(

kalman_filter.cpp

/////////////////////////////////////////////////////////////////////////////// //This is Kalman Filter .cpp //: // \file // \brief kalman_filter.cpp: A linear Kalman filter class // // Implemen