CSPARSE is a library of C routines which implement a number of direct methods for sparse linear systems.
The algorithms contained in CSPARSE have been chosen with five goals in mind:
DLAP is a library of FORTRAN90 routines for solving sparse linear systems.
HB_IO is a library of FORTRAN90 routines for reading and writing sparse linear systems stored in the Harwell-Boeing Sparse Matrix format.
HB_TO_ST is an executable FORTRAN77 program which converts the sparse matrix information stored in a Harwell-Boeing file into a sparse triplet file.
MGMRES is a C++ routine which applies the restarted GMRES algorithm to solve a sparse linear system.
MM_IO is a library of FORTRAN90 routines for reading and writing sparse linear systems stored in the Matrix Market format.
NSPCG is a library of FORTRAN90 routines for nonsymmetric preconditioned conjugate gradient methods applied to sparse matrices.
SPARSE is a built-in MATLAB function for defining sparse matrices.
SPARSE_CC is a data directory which contains a description and examples of the CC format, ("compressed column") for storing a sparse matrix, including a way to write the matrix as a set of three files.
SPARSE_CR is a data directory which contains a description and examples of the CR format, ("compressed row") for storing a sparse matrix, including a way to write the matrix as a set of three files.
SPARSEKIT is a library of FORTRAN90 routines by Yousef Saad for sparse matrix operations.
SPARSEPAK is a library of FORTRAN90 routines that form an obsolete version of the Waterloo Sparse Matrix Package.
ST is a data directory which contains examples and an explanation of the Sparse Triplet file format for sparse matrices.
Timothy Davis
CSPARSE: a Concise Sparse matrix package.
Copyright (c) 2006, Timothy A. Davis.
http://www.cise.ufl.edu/research/sparse/CSparse
CSPARSE is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
CSPARSE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this Module; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
csparse_demo1 reads an ST matrix from a file and performs basis matrix operations.
csparse_demo2 reads an ST matrix from a file and solves a linear system.
csparse_demo3 reads an ST matrix from a file, solves a linear system, and performs and update/downdate.
You can go up one level to the C source codes.