|
ccgsl 2.7.2
C++wrappersforGnuScientificLibrary
|
#include <cmath>#include <gsl/gsl_spblas.h>#include "vector.hpp"#include "spmatrix.hpp"#include "blas.hpp"
Go to the source code of this file.
Namespaces | |
| namespace | gsl |
| The gsl package creates an interface to the GNU Scientific Library for C++. | |
| namespace | gsl::spblas |
| This namespace handles the GSL blas functions for sparse matrices. | |
Functions | |
| int | gsl::spblas::dgemv (CBLAS_TRANSPOSE_t const TransA, double const alpha, spmatrix const &A, vector const &x, double const beta, vector &y) |
| C++ version of gsl_spblas_dgemv(). More... | |
| int | gsl::spblas::dgemm (double const alpha, spmatrix const &A, spmatrix const &B, spmatrix &C) |
| C++ version of gsl_spblas_dgemm(). More... | |