load network

This commit is contained in:
Thomas Schleicher 2023-09-21 09:56:10 +02:00
parent 2654733c27
commit d9b6e342c0
5 changed files with 24 additions and 27 deletions

View file

@ -16,7 +16,7 @@ void matrix_print(Matrix *matrix);
Matrix* matrix_copy(Matrix *matrix);
void matrix_save(Matrix* matrix, char* file_string);
Matrix* matrix_load(char* file_string);
Matrix* load_next_matrix(FILE * fptr);
Matrix* load_next_matrix(FILE * save_file);
void matrix_randomize(Matrix* matrix, int n); // don't understand the usage of the n
int matrix_argmax(Matrix* matrix);