Page MenuHomec4science

util.h
No OneTemporary

File Metadata

Created
Sat, May 11, 16:16
#ifndef SIMPLEBLAS_H_
#define SIMPLEBLAS_H_
#include "mmio.h"
struct size_m {
int m;
int n;
};
void print_mat( char title[], double *A, int m, int n );
double* read_mat(const char * restrict fn);
struct size_m get_size(const char * restrict fn);
#endif /*SIMPLEBLAS_H_*/

Event Timeline