Data Structures Lerax 1.0.0
Essential Data Structures for C language
Loading...
Searching...
No Matches
matrix-utils.h
Go to the documentation of this file.
1
12
13#ifndef MATRIX_PRINT_H
14#define MATRIX_PRINT_H
15#include "matrix.h"
16
21void matrix_print(Matrix *matrix);
22
23
29float matrix_max(Matrix *matrix);
30
31#endif
void matrix_print(Matrix *matrix)
pretty print matrix
float matrix_max(Matrix *matrix)
Get the max value on the matrix.
struct matrix Matrix
Definition matrix.h:16