|
ndarray
NumPy-friendly multidimensional arrays in C++
|
Public interface for arbitrary views into arrays. More...
#include <boost/fusion/include/push_back.hpp>#include <boost/fusion/include/vector.hpp>#include <boost/fusion/include/make_vector.hpp>#include <boost/fusion/include/mpl.hpp>#include "ndarray_fwd.h"Go to the source code of this file.
Classes | |
| struct | ndarray::index::Slice |
| Simple structure defining a noncontiguous range of indices. More... | |
| struct | ndarray::index::Range |
| Simple structure defining a contiguous range of indices. More... | |
| struct | ndarray::index::Full |
| Empty structure marking a view of an entire dimension. More... | |
| struct | ndarray::index::Scalar |
| Structure marking a single element of a dimension. More... | |
| struct | ndarray::View< Seq_ > |
| A template meta-sequence that defines an arbitrary view into an unspecified array. More... | |
Functions | |
| View< boost::fusion::vector1< index::Full > > | ndarray::view () |
| Start a view definition that includes the entire first dimension. | |
| View< boost::fusion::vector1< index::Range > > | ndarray::view (Size start, Size stop) |
| Start a view definition that selects a contiguous range in the first dimension. | |
| View< boost::fusion::vector1< index::Slice > > | ndarray::view (Size start, Size stop, Offset step) |
| Start a view definition that selects a noncontiguous slice of the first dimension. | |
| View< boost::fusion::vector1< index::Scalar > > | ndarray::view (Size n) |
| Start a view definition that selects single element from the first dimension. | |
Public interface for arbitrary views into arrays.