mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-peak.git
synced 2025-09-29 06:37:33 +00:00
Added ellipsoid fit function
This commit is contained in:
24
include/sta/math/linalg/ellipsoid.hpp
Normal file
24
include/sta/math/linalg/ellipsoid.hpp
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* ellipsoid.hpp
|
||||
*
|
||||
* Created on: Dec 11, 2024
|
||||
* Author: Dario
|
||||
*/
|
||||
|
||||
#ifndef STA_MATH_LINALG_ELLIPSOID_HPP
|
||||
#define STA_MATH_LINALG_ELLIPSOID_HPP
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
namespace sta
|
||||
{
|
||||
namespace math
|
||||
{
|
||||
namespace linalg
|
||||
{
|
||||
void ellipsoid_fit(float* xs, float * ys, float* zs, uint16_t count);
|
||||
} // namespace linalg
|
||||
} // namespace math
|
||||
} // namespace sta
|
||||
|
||||
#endif // STA_MATH_LINALG_ELLIPSOID_HPP
|
@@ -61,8 +61,6 @@ namespace sta
|
||||
Quaternion normalized();
|
||||
|
||||
Quaternion conjugate();
|
||||
|
||||
matrix toRotationMatrix();
|
||||
public:
|
||||
float x, y, z, w;
|
||||
};
|
||||
|
Reference in New Issue
Block a user