diff --git a/examples/linear_algebra/matrix_decompositions/givens_test.c b/examples/linear_algebra/matrix_decompositions/givens_test.c index 4845ffa53ac275390b35f3932ec0964fd09b3e06..d738295ffa194103d8c769654f013700e6992144 100644 --- a/examples/linear_algebra/matrix_decompositions/givens_test.c +++ b/examples/linear_algebra/matrix_decompositions/givens_test.c @@ -27,6 +27,7 @@ void givens_test(void) { + puts("############ Test the Givens algorithm ###############"); matrix_t xj, xij; xj = 100; diff --git a/examples/linear_algebra/matrix_decompositions/householder_test.c b/examples/linear_algebra/matrix_decompositions/householder_test.c index c5153135dfef1fb733d2d66916f1f7565657eca2..da557e390c3651c23e26a48aee1adb5587859e09 100644 --- a/examples/linear_algebra/matrix_decompositions/householder_test.c +++ b/examples/linear_algebra/matrix_decompositions/householder_test.c @@ -30,7 +30,7 @@ void householder_test(void) { - + puts("############ Test the Householder algorithm ###############"); matrix_t A[10][5] = { { 0.8147, 0.1576, 0.6557, 0.7060, 0.4387 }, { 0.9058, 0.9706, 0.0357, 0.0318, 0.3816 }, { 0.1270, 0.9572, 0.8491, 0.2769, 0.7655 }, diff --git a/examples/linear_algebra/matrix_decompositions/lu_decomp_test.c b/examples/linear_algebra/matrix_decompositions/lu_decomp_test.c index 985304fa39af5674583e03c2f68c458e808684e1..0edef7ab2d1f170c5066fa14ff68626367128ca6 100644 --- a/examples/linear_algebra/matrix_decompositions/lu_decomp_test.c +++ b/examples/linear_algebra/matrix_decompositions/lu_decomp_test.c @@ -28,6 +28,7 @@ void lu_decomp_test(void) { + puts("############ Test the LU decomposition algorithm ###############"); matrix_t A[5][5] = { { 0.8147, 0.1576, 0.6557, 0.7060, 0.4387 }, { 0.9058, 0.9706, 0.0357, 0.0318, 0.3816 }, { 0.1270, 0.9572, 0.8491, 0.2769, 0.7655 }, diff --git a/examples/linear_algebra/matrix_decompositions/svd_test.c b/examples/linear_algebra/matrix_decompositions/svd_test.c index 9bb507987716c2db2e6601c0f236e7e3d7d44f28..4b3c9bc88a84e172b52e0fa2cd84a226a1a3ceaf 100644 --- a/examples/linear_algebra/matrix_decompositions/svd_test.c +++ b/examples/linear_algebra/matrix_decompositions/svd_test.c @@ -31,6 +31,7 @@ void svd_test(void) { + puts("############ Test the SVD algorithm ###############"); uint8_t m, n; uint8_t i = 0;