ScaMaC  0.8.2
A Scalable Matrix Collection
Functions
scamac_sparsemat.h File Reference

Sparse matrix creation and manipulation. More...

#include "scamac_generator.h"
#include <stdbool.h>

Go to the source code of this file.

Functions

ScamacErrorCode scamac_sparsemat_alloc (ScamacInt nr, ScamacInt nc, ScamacInt ne, ScamacValType valtype, ScamacMatrix **sm)
 Allocate sparse matrix.
 
ScamacErrorCode scamac_sparsemat_free (ScamacMatrix *sm)
 Free allocated sparse matrix.
 
ScamacErrorCode scamac_sparsemat_from_generator (const ScamacGenerator *gen, ScamacMatrix **sm)
 Obtain sparse matrix from ScaMaC generator.
 
bool scamac_sparsemat_check (const ScamacMatrix *sm)
 basic sanity check for sparse matrix More...
 
ScamacErrorCode scamac_sparsemat_to_dense (const ScamacMatrix *sm, void **dm)
 convert sparse matrix to dense matrix More...
 

Detailed Description

Sparse matrix creation and manipulation.

Author
Andreas Alvermann (University of Greifswald)
Date
October 2017 — today

Function Documentation

◆ scamac_sparsemat_check()

bool scamac_sparsemat_check ( const ScamacMatrix *  sm)

basic sanity check for sparse matrix

Returns
Error code
Note
Does not complain about zero matrix entries.

◆ scamac_sparsemat_to_dense()

ScamacErrorCode scamac_sparsemat_to_dense ( const ScamacMatrix *  sm,
void **  dm 
)

convert sparse matrix to dense matrix

Note
If dm = NULL, the dense matrix is allocated in the function (and should be free'd eventually). Otherwise, we expect that dm points to an nrow*ncol(1 for real, 2 for complex) array of doubles.