Hitmap 1.3
 All Data Structures Namespaces Files Functions Variables Typedefs Friends Macros Groups Pages
Functions
matrix_io.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void read_mm_matrix (char *fn, int *m, int *n, int *nz, int **i_idx, int **j_idx, double **a)
 
void read_hb_matrix (char *fn, int *m, int *n, int *nz, int **row_start, int **col_idx, double **a)
 
void write_csr (char *fn, int m, int n, int nz, int *row_start, int *col_idx, double *a)
 

Function Documentation

void read_hb_matrix ( char *  fn,
int *  m,
int *  n,
int *  nz,
int **  row_start,
int **  col_idx,
double **  a 
)

Definition at line 650 of file matrix_io.c.

Here is the call graph for this function:

void read_mm_matrix ( char *  fn,
int *  m,
int *  n,
int *  nz,
int **  i_idx,
int **  j_idx,
double **  a 
)

Definition at line 553 of file matrix_io.c.

Here is the call graph for this function:

Here is the caller graph for this function:

void write_csr ( char *  fn,
int  m,
int  n,
int  nz,
int *  row_start,
int *  col_idx,
double *  a 
)

Definition at line 520 of file matrix_io.c.