/******************************************************************************* Copyright 2021 anonimous and contributors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ******************************************************************************/ #ifndef YAFL_H #define YAFL_H #include #include "yafl_math.h" /*============================================================================= Basic UD-factorized Kalman filter Definitions =============================================================================*/ typedef struct _yaflKalmanBaseSt yaflKalmanBaseSt; typedef yaflStatusEn (* yaflKalmanFuncP)(yaflKalmanBaseSt *, yaflFloat *, \ yaflFloat *); typedef yaflStatusEn (* yaflKalmanResFuncP)(yaflKalmanBaseSt *, yaflFloat *, \ yaflFloat *, yaflFloat *); typedef yaflStatusEn (* yaflKalmanScalarUpdateP)(yaflKalmanBaseSt *, yaflInt); /* Function pointer for robust versions of filters. Based on: 1. West M., "Robust Sequential Approximate Bayesian Estimation", J. R. Statist. Soc. B (1981), 43, No. 2, pp. 157-166 2. Gaver, Donald Paul; Jacobs, Patricia A., "Robustifying the Kalman filter", Naval Postgraduate School technical report. 1987 http://hdl.handle.net/10945/30147 */ typedef yaflFloat (* yaflKalmanRobFuncP)(yaflKalmanBaseSt *, yaflFloat); struct _yaflKalmanBaseSt { yaflKalmanFuncP f; /*A state transition function*/ yaflKalmanFuncP h; /*A measurement function*/ yaflKalmanResFuncP zrf; /*Measurement residual function function*/ yaflFloat * x; /*State vector*/ yaflFloat * y; /*Innovation vector*/ yaflFloat * Up; /*Upper triangular part of P*/ yaflFloat * Dp; /*Diagonal part of P*/ yaflFloat * Uq; /*Upper triangular part of Q*/ yaflFloat * Dq; /*Diagonal part of Q*/ yaflFloat * Ur; /*Upper triangular part of R*/ yaflFloat * Dr; /*Diagonal part of R*/ yaflFloat * l; /*likelihood*/ yaflFloat rff; /*R forgetting factor*/ yaflInt Nx; /*State vector size*/ yaflInt Nz; /*Measurement vector size*/ }; /*---------------------------------------------------------------------------*/ #define YAFL_KALMAN_BASE_MEMORY_MIXIN(nx, nz) \ yaflFloat x[nx]; \ yaflFloat y[nz]; \ \ yaflFloat Up[((nx - 1) * nx)/2]; \ yaflFloat Dp[nx]; \ \ yaflFloat Uq[((nx - 1) * nx)/2]; \ yaflFloat Dq[nx]; \ \ yaflFloat Ur[((nz - 1) * nz)/2]; \ yaflFloat Dr[nz]; \ yaflFloat l /*---------------------------------------------------------------------------*/ /*TODO: make qff and rff parameters*/ #define YAFL_KALMAN_BASE_INITIALIZER(_f, _h, _zrf, _nx, _nz, _rff, _mem) \ { \ .f = (yaflKalmanFuncP)_f, \ .h = (yaflKalmanFuncP)_h, \ .zrf = (yaflKalmanResFuncP)_zrf, \ \ .x = _mem.x, \ .y = _mem.y, \ \ .Up = _mem.Up, \ .Dp = _mem.Dp, \ \ .Uq = _mem.Uq, \ .Dq = _mem.Dq, \ \ .Ur = _mem.Ur, \ .Dr = _mem.Dr, \ \ .rff = _rff, \ \ .l = &_mem.l, \ \ .Nx = _nx, \ .Nz = _nz \ } /*---------------------------------------------------------------------------*/ #define YAFL_KALMAN_PREDICT_WRAPPER(predict, base_type, func, self_type) \ static inline yaflStatusEn func(self_type * self) \ { \ return predict((base_type *)self); \ } /*---------------------------------------------------------------------------*/ #define YAFL_KALMAN_UPDATE_IMPL(update, base_type, func, self_type) \ extern yaflStatusEn func##_scalar(yaflKalmanBaseSt * self, yaflInt i); \ static inline yaflStatusEn func(self_type * self, yaflFloat * z) \ { \ return update((base_type *)self, z, func##_scalar); \ } /*============================================================================= Basic UD-factorized EKF definitions =============================================================================*/ typedef struct _yaflEKFBaseSt yaflEKFBaseSt; struct _yaflEKFBaseSt { yaflKalmanBaseSt base; /*Base type*/ yaflKalmanFuncP jf; /*Jacobian of a state transition function*/ yaflKalmanFuncP jh; /*Jacobian of a measurement function*/ yaflFloat * H; /*Measurement Jacobian values*/ yaflFloat * W; /*Scratchpad memory block matrix*/ yaflFloat * D; /*Scratchpad memory diagonal matrix*/ yaflFloat qff; /*Q forgetting factor*/ }; /*---------------------------------------------------------------------------*/ #define YAFL_EKF_BASE_MEMORY_MIXIN(nx, nz) \ YAFL_KALMAN_BASE_MEMORY_MIXIN(nx, nz); \ \ yaflFloat H[nz * nx]; \ union { \ yaflFloat x[2 * nx * nx]; \ yaflFloat z[(nx + nz) * nz]; \ } W; \ union { \ yaflFloat x[2 * nx]; \ yaflFloat z[nx + nz]; \ } D /*---------------------------------------------------------------------------*/ #define YAFL_EKF_BASE_INITIALIZER(_f, _jf, _h, _jh, _zrf, _nx, _nz, \ _rff, _qff, _mem) \ { \ .base = YAFL_KALMAN_BASE_INITIALIZER(_f, _h, _zrf, _nx, _nz, _rff, _mem), \ \ .jf = (yaflKalmanFuncP)_jf, \ .jh = (yaflKalmanFuncP)_jh, \ \ .H = _mem.H, \ .W = _mem.W.x, \ .D = _mem.D.x, \ \ .qff = _qff \ } /*---------------------------------------------------------------------------*/ yaflStatusEn yafl_ekf_base_predict(yaflKalmanBaseSt * self); yaflStatusEn yafl_ekf_base_update(yaflKalmanBaseSt * self, yaflFloat * z, \ yaflKalmanScalarUpdateP scalar_update); /*---------------------------------------------------------------------------*/ #define YAFL_EKF_PREDICT_WRAPPER(func, self_type) \ YAFL_KALMAN_PREDICT_WRAPPER(yafl_ekf_base_predict, yaflKalmanBaseSt, \ func, self_type) /*---------------------------------------------------------------------------*/ #define YAFL_EKF_UPDATE_IMPL(func, self_type) \ YAFL_KALMAN_UPDATE_IMPL(yafl_ekf_base_update, yaflKalmanBaseSt, \ func, self_type) /*---------------------------------------------------------------------------*/ YAFL_EKF_PREDICT_WRAPPER(_yafl_ekf_predict_wrapper, yaflEKFBaseSt) /*----------------------------------------------------------------------------- Bierman filter -----------------------------------------------------------------------------*/ #define YAFL_EKF_BIERMAN_PREDICT _yafl_ekf_predict_wrapper YAFL_EKF_UPDATE_IMPL(yafl_ekf_bierman_update, yaflEKFBaseSt) /*----------------------------------------------------------------------------- Joseph filter -----------------------------------------------------------------------------*/ #define YAFL_EKF_JOSEPH_PREDICT _yafl_ekf_predict_wrapper YAFL_EKF_UPDATE_IMPL(yafl_ekf_joseph_update, yaflEKFBaseSt) /*============================================================================= Adaptive UD-factorized EKF definitions =============================================================================*/ typedef struct { yaflEKFBaseSt base; yaflFloat chi2; /*Divergence test threshold (chi-squared criteria)*/ } yaflEKFAdaptiveSt; /*Adaptive kKalman-Hinfinity filter structure*/ /*---------------------------------------------------------------------------*/ #define YAFL_EKF_ADAPTIVE_INITIALIZER(_f, _jf, _h, _jh, _zrf, _nx, _nz, \ _rff, _qff, _chi2, _mem) \ { \ .base = YAFL_EKF_BASE_INITIALIZER(_f, _jf, _h, _jh, _zrf, _nx, _nz, \ _rff, _qff, _mem), \ .chi2 = _chi2 \ } /* A good value of chi2 for yaflEKFAdaptiveSt is: scipy.stats.chi2.ppf(0.999, 1) == 10.827566170662733 */ /*---------------------------------------------------------------------------*/ YAFL_EKF_PREDICT_WRAPPER(_yafl_ada_ekf_predict_wrapper, yaflEKFAdaptiveSt) /*----------------------------------------------------------------------------- Adaptive Bierman filter -----------------------------------------------------------------------------*/ #define YAFL_EKF_ADAPTIVE_BIERAMN_PREDICT _yafl_ada_ekf_predict_wrapper YAFL_EKF_UPDATE_IMPL(yafl_ekf_adaptive_bierman_update, yaflEKFAdaptiveSt) /*----------------------------------------------------------------------------- Adaptive Joseph filter -----------------------------------------------------------------------------*/ #define YAFL_EKF_ADAPTIVE_JOSEPH_PREDICT _yafl_ada_ekf_predict_wrapper YAFL_EKF_UPDATE_IMPL(yafl_ekf_adaptive_joseph_update, yaflEKFAdaptiveSt) /*----------------------------------------------------------------------------- WARNING!!! DO NOT USE THIS variant of Adaptive Joseph filter !!! It was implemented to show some flaws of the corresponding algorithm! -----------------------------------------------------------------------------*/ yaflStatusEn \ yafl_ekf_do_not_use_this_update_scalar(yaflKalmanBaseSt * self, yaflInt i); static inline yaflStatusEn \ yafl_ekf_do_not_use_this_update(yaflEKFAdaptiveSt * self, yaflFloat * z) { return yafl_ekf_base_update((yaflKalmanBaseSt *)self, z, \ yafl_ekf_do_not_use_this_update_scalar); } /*============================================================================= Robust UD-factorized EKF definitions =============================================================================*/ /* Based on: 1. West M., "Robust Sequential Approximate Bayesian Estimation", J. R. Statist. Soc. B (1981), 43, No. 2, pp. 157-166 2. Gaver, Donald Paul; Jacobs, Patricia A., "Robustifying the Kalman filter", Naval Postgraduate School technical report. 1987 http://hdl.handle.net/10945/30147 */ typedef struct { yaflEKFBaseSt base; yaflKalmanRobFuncP g; /* g = -d(ln(pdf(y))) / dy */ yaflKalmanRobFuncP gdot; /* gdot = G = d(g) / dy */ } yaflEKFRobustSt; /*Robust EKF*/ /*---------------------------------------------------------------------------*/ #define YAFL_EKF_ROBUST_INITIALIZER(_f, _jf, _h, _jh, _zrf, _g, _gdot, \ _nx, _nz, _rff, _qff, _mem) \ { \ .base = YAFL_EKF_BASE_INITIALIZER(_f, _jf, _h, _jh, _zrf, _nx, _nz, \ _rff, _qff, _mem), \ .g = _g, \ .gdot = _gdot \ } /*---------------------------------------------------------------------------*/ YAFL_EKF_PREDICT_WRAPPER(_yafl_rob_ekf_predict_wrapper, yaflEKFRobustSt) /*----------------------------------------------------------------------------- Robust Bierman filter -----------------------------------------------------------------------------*/ #define YAFL_EKF_ROBUST_BIERAMN_PREDICT _yafl_rob_ekf_predict_wrapper YAFL_EKF_UPDATE_IMPL(yafl_ekf_robust_bierman_update, yaflEKFRobustSt) /*----------------------------------------------------------------------------- Robust Joseph filter -----------------------------------------------------------------------------*/ #define YAFL_EKF_ROBUST_JOSEPH_PREDICT _yafl_rob_ekf_predict_wrapper YAFL_EKF_UPDATE_IMPL(yafl_ekf_robust_joseph_update, yaflEKFRobustSt) /*============================================================================= Adaptive robust UD-factorized EKF definitions =============================================================================*/ typedef struct { yaflEKFRobustSt base; yaflFloat chi2; /*Divergence test threshold (chi-squared criteria)*/ } yaflEKFAdaptiveRobustSt; /*Robust EKF*/ /*---------------------------------------------------------------------------*/ #define YAFL_EKF_ADAPTIVE_ROBUST_INITIALIZER(_f, _jf, _h, _jh, _zrf, _g, _gdot, \ _nx, _nz, _rff, _qff, _chi2, _mem) \ { \ .base = YAFL_EKF_ROBUST_INITIALIZER(_f, _jf, _h, _jh, _zrf, _g, _gdot, \ _nx, _nz, _rff, _qff, _mem), \ .chi2 = _chi2 \ } /* A good value of chi2 for yaflEKFAdaptiveRobustSt is: scipy.stats.chi2.ppf(0.997, 1) == 8.807468393511947 */ /*---------------------------------------------------------------------------*/ YAFL_EKF_PREDICT_WRAPPER(_yafl_ada_rob_predict_wrapper, \ yaflEKFAdaptiveRobustSt) /*----------------------------------------------------------------------------- Adaptive Bierman filter -----------------------------------------------------------------------------*/ #define YAFL_EKF_ADAPTIVE_ROBUST_BIERAMN_PREDICT _yafl_ada_rob_predict_wrapper YAFL_EKF_UPDATE_IMPL(yafl_ekf_adaptive_robust_bierman_update, \ yaflEKFAdaptiveRobustSt) /*----------------------------------------------------------------------------- Adaptive Joseph filter -----------------------------------------------------------------------------*/ #define YAFL_EKF_ADAPTIVE_ROBUST_JOSEPH_PREDICT \ _yafl_ada_rob_predict_wrapper YAFL_EKF_UPDATE_IMPL(yafl_ekf_adaptive_robust_joseph_update, \ yaflEKFAdaptiveRobustSt) /*============================================================================= Basic UD-factorized UKF definitions =============================================================================*/ typedef struct _yaflUKFBaseSt yaflUKFBaseSt; /* The UKF base type */ /* Used to add delta vectors to initial point in sigma point generation. Parameters: yaflFloat * x0 yaflFloat * delta_x yaflFloat factor Does: delta_x = x0 + factor * delta_x */ typedef yaflStatusEn (* yaflUKFSigmaAddP)(yaflUKFBaseSt *, yaflFloat *, \ yaflFloat *, yaflFloat); /*Sigma point generator info base type*/ typedef struct _yaflUKFSigmaSt { yaflInt np; /* The number of sigma points */ yaflUKFSigmaAddP addf; /* Sigma point addition function */ } yaflUKFSigmaSt; /*---------------------------------------------------------------------------*/ #define YAFL_UKF_SIGMA_BASE_INITIALIZER(_np, _addf, _mem) \ { \ .np = (yaflInt)_np, \ .addf = (yaflUKFSigmaAddP)_addf, \ } /*---------------------------------------------------------------------------*/ /* Computes sigma points weights */ typedef yaflStatusEn (* yafkUKFSigmaGenWeigthsP)(yaflUKFBaseSt *); /* Generates sigma points */ typedef yaflStatusEn (* yaflUKFSigmaGenSigmasP)(yaflUKFBaseSt *); typedef struct _yaflUKFSigmaMethodsSt { yafkUKFSigmaGenWeigthsP wf; /* Weight function */ yaflUKFSigmaGenSigmasP spgf; /* Sigma point generator function */ } yaflUKFSigmaMethodsSt; /*---------------------------------------------------------------------------*/ struct _yaflUKFBaseSt { yaflKalmanBaseSt base; /* A pointer to the sigma point generator structure */ yaflUKFSigmaSt * sp_info; /* A sigma point generator method table pointer */ const yaflUKFSigmaMethodsSt * sp_meth; yaflKalmanFuncP xmf; /* State mean function */ yaflKalmanResFuncP xrf; /* State residual function function */ yaflKalmanFuncP zmf; /* Measurement mean function function */ yaflFloat * zp; /* Predicted measurement vector */ /*Scratchpad memory*/ yaflFloat * Sx; /* State */ yaflFloat * Sz; /* Measurement */ yaflFloat * Pzx; /* Pzx cross covariance matrix */ yaflFloat * sigmas_x; /* State sigma points */ yaflFloat * sigmas_z; /* Measurement sigma points */ yaflFloat * wm; /* Weights for mean calculations */ yaflFloat * wc; /* Weights for covariance calculations */ }; /*---------------------------------------------------------------------------*/ /* Warning: sigmas_x and _sigmas_z aren't defined in this mixin, see sigma points generators mixins!!! */ #define YAFL_UKF_BASE_MEMORY_MIXIN(nx, nz) \ YAFL_KALMAN_BASE_MEMORY_MIXIN(nx, nz); \ yaflFloat zp[nz]; \ yaflFloat Sx[nx]; \ yaflFloat Sz[nz]; \ yaflFloat Pzx[nz * nx] /*---------------------------------------------------------------------------*/ /* Sigma point memory mixin. WARNING: 1. _SIGMAS_X and _SIGMAS_Z must be the parts of some larger memory pool which has minimum size of (nx + nz) * (nz + 1) or np * (nx + nz) where np is number of sigma points 2. _SIGMAS_X must be at start of this pool */ #define YAFL_UKF_SP_MEMORY_MIXIN(np, nx, nz) \ yaflFloat wm[np]; \ yaflFloat wc[np]; \ union{ \ struct { \ yaflFloat x[(np) * nx]; \ yaflFloat z[(np) * nz]; \ } sigmas; \ yaflFloat r_update_buf[(nx + nz) * (nz + 1)]; \ } pool /*---------------------------------------------------------------------------*/ #define YAFL_UKF_BASE_INITIALIZER(_p, _pm, _f, _xmf, _xrf, _h, _zmf, _zrf, \ _nx, _nz, _rff, _mem) \ { \ .base = YAFL_KALMAN_BASE_INITIALIZER(_f, _h, _zrf, _nx, _nz, _rff, _mem), \ \ .sp_info = _p, \ .sp_meth = _pm, \ \ .xmf = (yaflKalmanFuncP)_xmf, \ .xrf = (yaflKalmanResFuncP)_xrf, \ \ .zmf = (yaflKalmanFuncP)_zmf, \ \ .zp = _mem.zp, \ \ .Sx = _mem.Sx, \ .Sz = _mem.Sz, \ .Pzx = _mem.Pzx, \ \ .sigmas_x = _mem.pool.sigmas.x, \ .sigmas_z = _mem.pool.sigmas.z, \ \ .wm = _mem.wm, \ .wc = _mem.wc \ } /*---------------------------------------------------------------------------*/ static inline yaflStatusEn yafl_ukf_post_init(yaflUKFBaseSt * self) { YAFL_CHECK(self, YAFL_ST_INV_ARG_1); YAFL_CHECK(self->sp_meth, YAFL_ST_INV_ARG_1); YAFL_CHECK(self->sp_meth->wf, YAFL_ST_INV_ARG_1); return self->sp_meth->wf(self); /*Need to compute weights before start*/ } static inline yaflStatusEn yafl_ukf_gen_sigmas(yaflUKFBaseSt * self) { YAFL_CHECK(self, YAFL_ST_INV_ARG_1); YAFL_CHECK(self->sp_meth, YAFL_ST_INV_ARG_1); YAFL_CHECK(self->sp_meth->spgf, YAFL_ST_INV_ARG_1); self->sp_meth->spgf(self); return self->sp_meth->wf(self); } yaflStatusEn yafl_ukf_base_predict(yaflUKFBaseSt * self); yaflStatusEn yafl_ukf_base_update(yaflUKFBaseSt * self, yaflFloat * z, \ yaflKalmanScalarUpdateP scalar_update); /*---------------------------------------------------------------------------*/ #define YAFL_UKF_PREDICT_WRAPPER(func, self_type) \ YAFL_KALMAN_PREDICT_WRAPPER(yafl_ukf_base_predict, yaflUKFBaseSt, \ func, self_type) /*---------------------------------------------------------------------------*/ #define YAFL_UKF_UPDATE_IMPL(func, self_type) \ YAFL_KALMAN_UPDATE_IMPL(yafl_ukf_base_update, yaflUKFBaseSt, \ func, self_type) /*============================================================================= Bierman UKF =============================================================================*/ YAFL_UKF_PREDICT_WRAPPER(yafl_ukf_bierman_predict, yaflUKFBaseSt) YAFL_UKF_UPDATE_IMPL(yafl_ukf_bierman_update, yaflUKFBaseSt) /*============================================================================= Adaptive Bierman UKF =============================================================================*/ typedef struct { yaflUKFBaseSt base; yaflFloat chi2; } yaflUKFAdaptivedSt; /*---------------------------------------------------------------------------*/ #define YAFL_UKF_ADAPTIVE_INITIALIZER(_p, _pm, _f, _xmf, _xrf, _h, _zmf, \ _zrf, _nx, _nz, _rff, _chi2, _mem) \ { \ .base = YAFL_UKF_BASE_INITIALIZER(_p, _pm, _f, _xmf, _xrf, _h, \ _zmf, _zrf, _nx, _nz, _rff, _mem) , \ .chi2 = _chi2 \ } /* A good value of chi2 for yaflUKFAdaptivedSt is: scipy.stats.chi2.ppf(0.999, 1) == 10.827566170662733 */ /*---------------------------------------------------------------------------*/ YAFL_UKF_PREDICT_WRAPPER(yafl_ukf_adaptive_bierman_predict, yaflUKFAdaptivedSt) YAFL_UKF_UPDATE_IMPL(yafl_ukf_adaptive_bierman_update, yaflUKFAdaptivedSt) /*============================================================================= Robust Bierman UKF =============================================================================*/ typedef yaflFloat (* yaflUKFRobFuncP)(yaflUKFBaseSt *, yaflFloat); typedef struct { yaflUKFBaseSt base; yaflKalmanRobFuncP g; /* g = -d(ln(pdf(y))) / dy */ yaflKalmanRobFuncP gdot; /* gdot = G = d(g) / dy */ } yaflUKFRobustSt; /*Robust UKF*/ /*---------------------------------------------------------------------------*/ #define YAFL_UKF_ROBUST_INITIALIZER(_p, _pm, _f, _xmf, _xrf, _h, _zmf, _zrf, \ _g, _gdot, _nx, _nz, _rff, _mem) \ { \ .base = YAFL_UKF_BASE_INITIALIZER(_p, _pm, _f, _xmf, _xrf, _h, _zmf, \ _zrf, _nx, _nz, _rff, _mem) , \ .g = _g, \ .gdot = _gdot \ } /*---------------------------------------------------------------------------*/ YAFL_UKF_PREDICT_WRAPPER(yafl_ukf_robust_bierman_predict, yaflUKFRobustSt) YAFL_UKF_UPDATE_IMPL(yafl_ukf_robust_bierman_update, yaflUKFRobustSt) /*============================================================================= Adaptive robust Bierman UKF =============================================================================*/ typedef struct { yaflUKFRobustSt base; yaflFloat chi2; /*Divergence test threshold (chi-squared criteria)*/ } yaflUKFAdaptiveRobustSt; /*Robust EKF*/ /*---------------------------------------------------------------------------*/ #define YAFL_UKF_ADAPTIVE_ROBUST_INITIALIZER(_p, _pm, _f, _xmf, _xrf, _h, \ _zmf, _zrf, _g, _gdot, _nx, \ _nz, _rff, _chi2, _mem) \ { \ .base = YAFL_UKF_ROBUST_INITIALIZER(_p, _pm, _f, _xmf, _xrf, _h, _zmf, _zrf, \ _g, _gdot, _nx, _nz, _rff, _mem), \ .chi2 = _chi2 \ } /* A good value of chi2 for yaflUKFAdaptiveRobustSt is: scipy.stats.chi2.ppf(0.997, 1) == 8.807468393511947 */ /*---------------------------------------------------------------------------*/ YAFL_UKF_PREDICT_WRAPPER(yafl_ukf_adaptive_robust_bierman_predict, \ yaflUKFAdaptiveRobustSt) YAFL_UKF_UPDATE_IMPL(yafl_ukf_adaptive_robust_bierman_update, \ yaflUKFAdaptiveRobustSt) /*============================================================================= Full UKF, not sequential square root version of UKF =============================================================================*/ typedef struct { yaflUKFBaseSt base; /* Base type */ yaflFloat * Us; /* Upper triangular part of S */ yaflFloat * Ds; /* Diagonal part of S */ } yaflUKFSt; /*---------------------------------------------------------------------------*/ /* Warning: sigmas_x and _sigmas_z aren't defined in this mixin, see sigma points generators mixins!!! */ #define YAFL_UKF_MEMORY_MIXIN(nx, nz) \ YAFL_UKF_BASE_MEMORY_MIXIN(nx, nz); \ yaflFloat Us[((nz - 1) * nz)/2]; \ yaflFloat Ds[nz] /*---------------------------------------------------------------------------*/ #define YAFL_UKF_INITIALIZER(_p, _pm, _f, _xmf, _xrf, _h, _zmf, \ _zrf, _nx, _nz, _rff, _mem) \ { \ .base = YAFL_UKF_BASE_INITIALIZER(_p, _pm, _f, _xmf, _xrf, _h, _zmf, \ _zrf, _nx, _nz, _rff, _mem), \ .Us = _mem.Us, \ .Ds = _mem.Ds \ } /*---------------------------------------------------------------------------*/ YAFL_UKF_PREDICT_WRAPPER(yafl_ukf_predict, yaflUKFSt) yaflStatusEn yafl_ukf_update(yaflUKFBaseSt * self, yaflFloat * z); /*============================================================================= Full adaptive UKF, not sequential square root version of UKF =============================================================================*/ typedef struct { yaflUKFSt base; /* Base type */ yaflFloat chi2; /*Divergence test threshold (chi-squared criteria)*/ } yaflUKFFullAdapiveSt; /*---------------------------------------------------------------------------*/ #define YAFL_UKF_FULL_ADAPTIVE_INITIALIZER(_p, _pm, _f, _xmf, _xrf, _h, \ _zmf, _zrf, _nx, _nz, \ _rff, _chi2, _mem) \ { \ .base = YAFL_UKF_INITIALIZER(_p, _pm, _f, _xmf, _xrf, _h, _zmf, _zrf, \ _nx, _nz, _rff, _mem), \ .chi2 = _chi2 \ } /*---------------------------------------------------------------------------*/ static inline \ yaflStatusEn yafl_ukf_adaptive_predict(yaflUKFFullAdapiveSt * self) { return yafl_ukf_predict((yaflUKFSt *)self); } yaflStatusEn yafl_ukf_adaptive_update(yaflUKFBaseSt * self, yaflFloat * z); /*============================================================================= Van der Merwe sigma point generator =============================================================================*/ typedef struct _yaflUKFMerweSt { yaflUKFSigmaSt base; yaflFloat alpha; yaflFloat beta; yaflFloat kappa; } yaflUKFMerweSt; /*---------------------------------------------------------------------------*/ #define YAFL_UKF_MERWE_MEMORY_MIXIN(nx, nz) \ YAFL_UKF_SP_MEMORY_MIXIN(2 * nx + 1, nx, nz) /*---------------------------------------------------------------------------*/ #define YAFL_UKF_MERWE_INITIALIZER(_nx, _addf, _alpha, _beta, _kappa, _mem) \ { \ .base = YAFL_UKF_SIGMA_BASE_INITIALIZER((2 * _nx + 1), _addf, _mem), \ .alpha = _alpha, \ .beta = _beta, \ .kappa = _kappa \ } /*---------------------------------------------------------------------------*/ extern const yaflUKFSigmaMethodsSt yafl_ukf_merwe_spm; /*============================================================================= Julier sigma point generator =============================================================================*/ typedef struct _yaflUKFJulierSt { yaflUKFSigmaSt base; yaflFloat kappa; } yaflUKFJulierSt; /*---------------------------------------------------------------------------*/ #define YAFL_UKF_JULIER_MEMORY_MIXIN(nx, nz) \ YAFL_UKF_SP_MEMORY_MIXIN(2 * nx + 1, nx, nz) /*---------------------------------------------------------------------------*/ #define YAFL_UKF_JULIER_INITIALIZER(_nx, _addf, _kappa, _mem) \ { \ .base = YAFL_UKF_SIGMA_BASE_INITIALIZER((2 * _nx + 1), _addf, _mem), \ .kappa = _kappa \ } /*---------------------------------------------------------------------------*/ extern const yaflUKFSigmaMethodsSt yafl_ukf_julier_spm; #endif // YAFL_H