/* * inertial_filter.h * * Copyright (C) 2013 Anton Babushkin. All rights reserved. * Author: Anton Babushkin */ #include #include void inertial_filter_predict(float dt, float x[3]); void inertial_filter_correct(float e, float dt, float x[3], int i, float w);