mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-14 14:27:34 +08:00
215203fc6f
* Dual numbers initial implementation * Add test coverage, with partial derivative example * Add Jacobian test, fix small issues * Improve test to demonstrate non-square jacobian * Better naming for collectReals/Derivatives * Improve comments * Potential GCC 4.8 bug workaround * Add fallback workaround for non-IEEE float platforms
21 lines
431 B
C++
21 lines
431 B
C++
#pragma once
|
|
|
|
#include "stdlib_imports.hpp"
|
|
#ifdef __PX4_QURT
|
|
#include "dspal_math.h"
|
|
#endif
|
|
#include "helper_functions.hpp"
|
|
#include "Matrix.hpp"
|
|
#include "SquareMatrix.hpp"
|
|
#include "Slice.hpp"
|
|
#include "Vector.hpp"
|
|
#include "Vector2.hpp"
|
|
#include "Vector3.hpp"
|
|
#include "Euler.hpp"
|
|
#include "Dcm.hpp"
|
|
#include "Scalar.hpp"
|
|
#include "Quaternion.hpp"
|
|
#include "AxisAngle.hpp"
|
|
#include "LeastSquaresSolver.hpp"
|
|
#include "Dual.hpp"
|