kalman_p.h
来自「This package implements a Kalman filter 」· C头文件 代码 · 共 26 行
H
26 行
/* $Id: kalman_p.h,v 1.4 1996/12/17 22:12:00 kint Exp $ */#ifndef _KALMAN_P_H_#define _KALMAN_P_H_#include "kalman.h"/* Private function prototypes for Kalman filter, put in this file to underscore that they are private *//* the actual filter */double kalman_speed(kalman_t *k);/* restarts filter by placing in initial state, called after allocation and whenever filter is restarted */void kalman_restart(kalman_t *k);/* loads new values, shifts old values */void kalman_load(kalman_t *k, int vol, double occ);/* test vol/occ for validity, returns TRUE/FALSE */int kalman_ok(int vol, double occ);#endif /* _KALMAN_P_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?