summaryrefslogtreecommitdiff
path: root/matrix.c
Commit message (Collapse)AuthorAge
* Check if matrix is column or row vectorJasper11 days
|
* Added macros to iterate over matrixJasper11 days
| | | | | | | | | | | This avoids having to write double for-loops again and again. - 'matrix_loop' just replaces the loops and gives access to the indices i and j - 'matrix_foreach' initializes a double pointer to the current element - 'matrix_foreach_idx' is combination of the two above All for-loops that simply iterate over a matrix have been replaced.
* Swap order of arguments for matrix_scale()Jasper2025-09-01
|
* Merge row-swap and col-swapJasper2025-09-01
|
* Added functions to swap rows and colsJasper2025-09-01
|
* Removed const in front of non-pointer typesJasper2025-09-01
|
* Tolerance check of absolute value in 'matrix_eq'Jasper2025-09-01
|
* Initial commitJasper2025-08-31