return A;
}
-
-SparseMatrix SparseMatrix_import_binary(char *name){
- SparseMatrix A = NULL;
- FILE *f;
- f = fopen(name, "rb");
-
- A = SparseMatrix_import_binary_fp(f);
- return A;
-}
-
static void SparseMatrix_export_coord(FILE *f, SparseMatrix A){
int *ia, *ja;
real *a;
void SparseMatrix_export(FILE *f, SparseMatrix A);/* export into MM format except the header */
-SparseMatrix SparseMatrix_import_binary(char *name);
SparseMatrix SparseMatrix_import_binary_fp(FILE *f);/* import into a preopenned file */
void SparseMatrix_delete(SparseMatrix A);