![]() |
Bachelor's degree final project
v1.0
Faculty of Mathematics, University of Barcelona
|
00001 00010 #ifndef LOAD_H 00011 #define LOAD_H 00012 00013 #include <stdio.h> 00014 00015 int load_vector(double * const, FILE * const); 00016 int loadas_vector(double * const, char * const); 00017 00018 int load_matrix(double ** const, FILE * const); 00019 int loadas_matrix(double ** const, char * const); 00020 00021 #endif