Added ellipsoid fit function

This commit is contained in:
dario
2024-12-14 11:15:48 +01:00
parent ff12f10559
commit 8f28b31f26
6 changed files with 51 additions and 15 deletions

25
src/linalg/ellipsoid.cpp Normal file
View File

@@ -0,0 +1,25 @@
/*
* ellipsoid.cpp
*
* Created on: Dec 11, 2024
* Author: Dario
*/
#include <sta/math/linalg/ellipsoid.hpp>
namespace sta
{
namespace math
{
namespace linalg
{
void ellipsoid_fit(float* xs, float * ys, float* zs, uint16_t count)
{
}
} // namespace linalg
} // namespace math
} // namespace sta