فهرست منبع

Adding notes to setQbias function

I added those for those, like me, who wanted to know how to make the filter more concise or smooth it out depending.
Jackson 9 سال پیش
والد
کامیت
e9ab00c416
1فایلهای تغییر یافته به همراه6 افزوده شده و 0 حذف شده
  1. 6 0
      Kalman.h

+ 6 - 0
Kalman.h

@@ -30,6 +30,12 @@ public:
 
     /* These are used to tune the Kalman filter */
     void setQangle(float Q_angle);
+    /**
+     * setQbias(float Q_bias)
+     * Default value (0.003f) is in Kalman.cpp. 
+     * Raise this to follow input more closely,
+     * lower this to smooth result of kalman filter.
+     */
     void setQbias(float Q_bias);
     void setRmeasure(float R_measure);