Skip to content

Vectors and matrices

kevinchannon edited this page Oct 3, 2011 · 4 revisions

The classes and functions described here provide vector and matrix classes that share features with std::vector, such as iterators and functions like gsl::vector<>::push_back(). GSL++ containers also provide access to a GSL-like interface, via the gsl::vector<>::to_gsl_vector() and gsl::vector::as_gsl_vector member functions, among others. Additionally, a simple gsl::block<> template class is provided that allows a C++-style interface to a simple C-style array.

Container class templates

  1. block< T >
  2. vector
  3. matrix

Clone this wiki locally