mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-peak.git
synced 2025-12-17 02:28:04 +00:00
26 lines
332 B
C++
26 lines
332 B
C++
/*
|
|
* 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
|
|
|
|
|