Reference

Contents

Index

SuiteSparseMatrixCollection.fetch_ssmcMethod
 fetch_ssmc(matrices; format="MM")

Download matrices from the SuiteSparseMatrixCollection. The argument matrices should be a DataFrame or DataFrameRow. An array of strings is returned with the paths where the matrices are stored.

source
SuiteSparseMatrixCollection.ssmc_dbMethod
ssmc_db(; verbose::Bool=true)

Load the database of the SuiteSparseMatrixCollection. A summary of the statistics available for each matrix can be found at https://www.cise.ufl.edu/research/sparse/matrices/stats.html.

source
SuiteSparseMatrixCollection.ssmc_matricesMethod
ssmc_matrices(ssmc, group, name)

Return a DataFrame of matrices whose group contains the string group and whose name contains the string name.

ssmc_matrices(ssmc, name)
ssmc_matrices(ssmc, "", name)

Return a DataFrame of matrices whose name contains the string name.

ssmc_matrices(ssmc, group, "")

Return a DataFrame of matrices whose group contains the string group.

Example: ssmc_matrices(ssmc, "HB", "bcsstk").

source