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