Fixes for control systems AND SVD and QR decomposition (#9)

Reviewed-on: #9
Co-authored-by: Cynopolis <quinn.henthorne@gmail.com>
This commit was merged in pull request #9.
This commit is contained in:
2026-08-26 13:08:21 -04:00
committed by Cynopolis
parent 48b016d8b7
commit f0035ab67f
16 changed files with 6471 additions and 67 deletions
+2 -1
View File
@@ -76,7 +76,8 @@ TEST_CASE("Timing Tests", "Matrix") {
SECTION("Determinant") {
for (uint32_t i{0}; i < 1000000; i++) {
float det1 = mat4.Det();
float det = mat4.Det();
(void)det;
}
}