RcdMathLib_doc
Open Source Library for Linear and Non-linear Algebra
matrix_test.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2020 Zakaria Kasmi <zkasmi@inf.fu-berlin.de>
3  * 2020 Freie Universität Berlin
4  *
5  * This file is subject to the terms and conditions of the GNU Lesser General
6  * Public License v2.1. See the file LICENSE in the top level directory for more
7  * details.
8  */
9 
24 #ifndef MATRIX_TEST_H_
25 #define MATRIX_TEST_H_
26 
31 void matrix_test(void);
32 
38 
43 void triangular_matrices_test(void);
44 
45 #endif /* MATRIX_TEST_H_ */
triangular_matrices_test
void triangular_matrices_test(void)
Examples of triangular matrices.
Definition: matrix_test.c:242
inv_triangular_matrices_test
void inv_triangular_matrices_test(void)
Examples of the inverse of triangular matrices.
Definition: matrix_test.c:164
matrix_test
void matrix_test(void)
Test some matrix operations.
Definition: matrix_test.c:31