Add some documentation, Aff

This commit is contained in:
Milo Priegnitz
2024-06-02 22:15:33 +02:00
parent af40569b9d
commit e9b2017744
11 changed files with 265 additions and 89 deletions

View File

@@ -2,6 +2,9 @@
#define INC_LINALG_HPP_
#include <sta/math/linalg/matrix.hpp>
namespace sta
{
namespace math
{
namespace linalg
@@ -27,6 +30,8 @@ matrix inv_schur_dec(matrix);
matrix _inv_char_poly_3x3(matrix);
matrix _inv_char_poly_2x2(matrix);
}
}
} // namespace linalg
} // namespace math
} // namespace sta
#endif /* INC_LINALG_HPP_ */

View File

@@ -1,6 +1,10 @@
#ifndef INC_MATRIX_HPP_
#define INC_MATRIX_HPP_
#include <cstdint>
namespace sta
{
namespace math
{
@@ -55,7 +59,8 @@ struct matrix
};
} // namespace math
}
} // namespace sta
#endif /* INC_MATRIX_HPP_ */