Boost.uBlas 1.49
Linear Algebra in C++: matrices, vectors and numeric algorithms

boost::numeric::ublas::mapped_matrix< T, L, A > Class Template Reference

Index map based sparse matrix of values of type T. More...

#include <matrix_sparse.hpp>

Inheritance diagram for boost::numeric::ublas::mapped_matrix< T, L, A >:
Collaboration diagram for boost::numeric::ublas::mapped_matrix< T, L, A >:

List of all members.

Classes

class  const_iterator1
class  const_iterator2
class  iterator1
class  iterator2

Public Types

typedef A array_type
typedef matrix_reference
< self_type
closure_type
typedef const matrix_reference
< const self_type
const_closure_type
typedef const T & const_reference
typedef reverse_iterator_base1
< const_iterator1
const_reverse_iterator1
typedef reverse_iterator_base2
< const_iterator2
const_reverse_iterator2
typedef mapped_matrix< T, L, A > container_type
typedef A::difference_type difference_type
typedef mapped_matrix< T, L, A > expression_type
typedef self_type matrix_temporary_type
typedef L::orientation_category orientation_category
typedef detail::map_traits< A,
T >::reference 
reference
typedef reverse_iterator_base1
< iterator1
reverse_iterator1
typedef reverse_iterator_base2
< iterator2
reverse_iterator2
typedef A::size_type size_type
typedef sparse_tag storage_category
typedef matrix_tag type_category
typedef T value_type
typedef mapped_vector< T, A > vector_temporary_type

Public Member Functions

BOOST_UBLAS_INLINE mapped_matrix ()
BOOST_UBLAS_INLINE mapped_matrix (size_type size1, size_type size2, size_type non_zeros=0)
template<class AE >
BOOST_UBLAS_INLINE mapped_matrix (const matrix_expression< AE > &ae, size_type non_zeros=0)
BOOST_UBLAS_INLINE mapped_matrix (const mapped_matrix &m)
template<class AE >
BOOST_UBLAS_INLINE mapped_matrixassign (const matrix_expression< AE > &ae)
BOOST_UBLAS_INLINE mapped_matrixassign_temporary (mapped_matrix &m)
BOOST_UBLAS_INLINE const_iterator1 begin1 () const
BOOST_UBLAS_INLINE iterator1 begin1 ()
BOOST_UBLAS_INLINE const_iterator2 begin2 () const
BOOST_UBLAS_INLINE iterator2 begin2 ()
BOOST_UBLAS_INLINE void clear ()
BOOST_UBLAS_INLINE const
array_type
data () const
BOOST_UBLAS_INLINE array_typedata ()
BOOST_UBLAS_INLINE const_iterator1 end1 () const
BOOST_UBLAS_INLINE iterator1 end1 ()
BOOST_UBLAS_INLINE const_iterator2 end2 () const
BOOST_UBLAS_INLINE iterator2 end2 ()
BOOST_UBLAS_INLINE void erase_element (size_type i, size_type j)
const_iterator1 find1 (int rank, size_type i, size_type j, int direction=1) const
iterator1 find1 (int rank, size_type i, size_type j, int direction=1)
const_iterator2 find2 (int rank, size_type i, size_type j, int direction=1) const
iterator2 find2 (int rank, size_type i, size_type j, int direction=1)
BOOST_UBLAS_INLINE pointer find_element (size_type i, size_type j)
BOOST_UBLAS_INLINE const_pointer find_element (size_type i, size_type j) const
BOOST_UBLAS_INLINE true_reference insert_element (size_type i, size_type j, const_reference t)
template<class AE >
BOOST_UBLAS_INLINE mapped_matrixminus_assign (const matrix_expression< AE > &ae)
BOOST_UBLAS_INLINE size_type nnz () const
BOOST_UBLAS_INLINE size_type nnz_capacity () const
BOOST_UBLAS_INLINE reference operator() (size_type i, size_type j)
BOOST_UBLAS_INLINE const
container_type
operator() () const
BOOST_UBLAS_INLINE container_typeoperator() ()
BOOST_UBLAS_INLINE const_reference operator() (size_type i, size_type j) const
template<class AT >
BOOST_UBLAS_INLINE mapped_matrixoperator*= (const AT &at)
template<class AE >
BOOST_UBLAS_INLINE mapped_matrixoperator+= (const matrix_expression< AE > &ae)
template<class C >
BOOST_UBLAS_INLINE mapped_matrixoperator+= (const matrix_container< C > &m)
template<class AE >
BOOST_UBLAS_INLINE mapped_matrixoperator-= (const matrix_expression< AE > &ae)
template<class C >
BOOST_UBLAS_INLINE mapped_matrixoperator-= (const matrix_container< C > &m)
template<class AT >
BOOST_UBLAS_INLINE mapped_matrixoperator/= (const AT &at)
BOOST_UBLAS_INLINE mapped_matrixoperator= (const mapped_matrix &m)
template<class C >
BOOST_UBLAS_INLINE mapped_matrixoperator= (const matrix_container< C > &m)
template<class AE >
BOOST_UBLAS_INLINE mapped_matrixoperator= (const matrix_expression< AE > &ae)
template<class AE >
BOOST_UBLAS_INLINE mapped_matrixplus_assign (const matrix_expression< AE > &ae)
BOOST_UBLAS_INLINE
reverse_iterator1 
rbegin1 ()
BOOST_UBLAS_INLINE
const_reverse_iterator1 
rbegin1 () const
BOOST_UBLAS_INLINE
const_reverse_iterator2 
rbegin2 () const
BOOST_UBLAS_INLINE
reverse_iterator2 
rbegin2 ()
BOOST_UBLAS_INLINE
reverse_iterator1 
rend1 ()
BOOST_UBLAS_INLINE
const_reverse_iterator1 
rend1 () const
BOOST_UBLAS_INLINE
const_reverse_iterator2 
rend2 () const
BOOST_UBLAS_INLINE
reverse_iterator2 
rend2 ()
BOOST_UBLAS_INLINE void reserve (size_type non_zeros, bool preserve=true)
BOOST_UBLAS_INLINE void resize (size_type size1, size_type size2, bool preserve=true)
template<class Archive >
void serialize (Archive &ar, const unsigned int)
BOOST_UBLAS_INLINE size_type size1 () const
BOOST_UBLAS_INLINE size_type size2 () const
BOOST_UBLAS_INLINE void swap (mapped_matrix &m)

Static Public Attributes

static const unsigned complexity

Private Types

typedef const T * const_pointer
typedef A::const_iterator const_subiterator_type
typedef L layout_type
typedef T * pointer
typedef mapped_matrix< T, L, A > self_type
typedef A::iterator subiterator_type
typedef T & true_reference

Private Member Functions

BOOST_UBLAS_INLINE true_reference at_element (size_type i, size_type j)
BOOST_UBLAS_INLINE size_type restrict_capacity (size_type non_zeros) const

Private Attributes

array_type data_
size_type size1_
size_type size2_

Static Private Attributes

static const value_type zero_ = value_type()

Friends

BOOST_UBLAS_INLINE friend void swap (mapped_matrix &m1, mapped_matrix &m2)

Detailed Description

template<class T, class L, class A>
class boost::numeric::ublas::mapped_matrix< T, L, A >

Index map based sparse matrix of values of type T.

This class represents a matrix by using a key to value mapping. The default type is

 template<class T, class L = row_major, class A =  map_std<std::size_t, T> > class mapped_matrix; 

So, by default a STL map container is used to associate keys and values. The key is computed depending on the layout type L as

 key = layout_type::element(i, size1_, j, size2_); 

which means

 key = (i*size2+j) 

for a row major matrix. Limitations: The matrix size must not exceed $(size1*size2) < $

 std::limits<std::size_t> 

. The find1() and find2() operations have a complexity of at least $\mathcal{O}(log(nnz))$, depending on the efficiency of std::lower_bound on the key set of the map. Orientation and storage can also be specified, otherwise a row major orientation is used. It is not required by the storage to initialize elements of the matrix. By default, the orientation is row_major.

See also:
fwd.hpp, storage_sparse.hpp
Template Parameters:
Tthe type of object stored in the matrix (like double, float, complex, etc...)
Lthe storage organization. It can be either row_major or column_major. By default it is row_major

Definition at line 268 of file matrix_sparse.hpp.


Member Typedef Documentation

template<class T, class L, class A>
typedef T& boost::numeric::ublas::mapped_matrix< T, L, A >::true_reference [private]

Definition at line 271 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef T* boost::numeric::ublas::mapped_matrix< T, L, A >::pointer [private]

Definition at line 272 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef const T* boost::numeric::ublas::mapped_matrix< T, L, A >::const_pointer [private]

Definition at line 273 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef L boost::numeric::ublas::mapped_matrix< T, L, A >::layout_type [private]

Definition at line 274 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef mapped_matrix<T, L, A> boost::numeric::ublas::mapped_matrix< T, L, A >::self_type [private]
template<class T, class L, class A>
typedef A::size_type boost::numeric::ublas::mapped_matrix< T, L, A >::size_type

Definition at line 280 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef A::difference_type boost::numeric::ublas::mapped_matrix< T, L, A >::difference_type

Definition at line 281 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef T boost::numeric::ublas::mapped_matrix< T, L, A >::value_type

Definition at line 282 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef A boost::numeric::ublas::mapped_matrix< T, L, A >::array_type

Definition at line 283 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef const T& boost::numeric::ublas::mapped_matrix< T, L, A >::const_reference

Definition at line 284 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef detail::map_traits<A, T>::reference boost::numeric::ublas::mapped_matrix< T, L, A >::reference

Definition at line 286 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef const matrix_reference<const self_type> boost::numeric::ublas::mapped_matrix< T, L, A >::const_closure_type

Definition at line 290 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef matrix_reference<self_type> boost::numeric::ublas::mapped_matrix< T, L, A >::closure_type

Definition at line 291 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef mapped_vector<T, A> boost::numeric::ublas::mapped_matrix< T, L, A >::vector_temporary_type

Definition at line 292 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef self_type boost::numeric::ublas::mapped_matrix< T, L, A >::matrix_temporary_type

Definition at line 293 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef sparse_tag boost::numeric::ublas::mapped_matrix< T, L, A >::storage_category

Definition at line 294 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef L::orientation_category boost::numeric::ublas::mapped_matrix< T, L, A >::orientation_category

Definition at line 295 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef A::const_iterator boost::numeric::ublas::mapped_matrix< T, L, A >::const_subiterator_type [private]

Definition at line 537 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef A::iterator boost::numeric::ublas::mapped_matrix< T, L, A >::subiterator_type [private]

Definition at line 538 of file matrix_sparse.hpp.

Definition at line 553 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef reverse_iterator_base1<iterator1> boost::numeric::ublas::mapped_matrix< T, L, A >::reverse_iterator1

Definition at line 555 of file matrix_sparse.hpp.

Definition at line 556 of file matrix_sparse.hpp.

template<class T, class L, class A>
typedef reverse_iterator_base2<iterator2> boost::numeric::ublas::mapped_matrix< T, L, A >::reverse_iterator2

Definition at line 557 of file matrix_sparse.hpp.

Definition at line 488 of file expression_types.hpp.


Constructor & Destructor Documentation

template<class T, class L, class A>
BOOST_UBLAS_INLINE boost::numeric::ublas::mapped_matrix< T, L, A >::mapped_matrix ( ) [inline]

Definition at line 299 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE boost::numeric::ublas::mapped_matrix< T, L, A >::mapped_matrix ( size_type  size1,
size_type  size2,
size_type  non_zeros = 0 
) [inline]

Definition at line 303 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE boost::numeric::ublas::mapped_matrix< T, L, A >::mapped_matrix ( const mapped_matrix< T, L, A > &  m) [inline]

Definition at line 309 of file matrix_sparse.hpp.

template<class T, class L, class A>
template<class AE >
BOOST_UBLAS_INLINE boost::numeric::ublas::mapped_matrix< T, L, A >::mapped_matrix ( const matrix_expression< AE > &  ae,
size_type  non_zeros = 0 
) [inline]

Definition at line 314 of file matrix_sparse.hpp.


Member Function Documentation

template<class T, class L, class A>
BOOST_UBLAS_INLINE size_type boost::numeric::ublas::mapped_matrix< T, L, A >::size1 ( ) const [inline]

Definition at line 323 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE size_type boost::numeric::ublas::mapped_matrix< T, L, A >::size2 ( ) const [inline]

Definition at line 327 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE size_type boost::numeric::ublas::mapped_matrix< T, L, A >::nnz_capacity ( ) const [inline]

Definition at line 331 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE size_type boost::numeric::ublas::mapped_matrix< T, L, A >::nnz ( ) const [inline]

Definition at line 335 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE const array_type& boost::numeric::ublas::mapped_matrix< T, L, A >::data ( ) const [inline]

Definition at line 341 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE array_type& boost::numeric::ublas::mapped_matrix< T, L, A >::data ( ) [inline]

Definition at line 345 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE size_type boost::numeric::ublas::mapped_matrix< T, L, A >::restrict_capacity ( size_type  non_zeros) const [inline, private]

Definition at line 352 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE void boost::numeric::ublas::mapped_matrix< T, L, A >::resize ( size_type  size1,
size_type  size2,
bool  preserve = true 
) [inline]

Definition at line 361 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE void boost::numeric::ublas::mapped_matrix< T, L, A >::reserve ( size_type  non_zeros,
bool  preserve = true 
) [inline]

Definition at line 371 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE pointer boost::numeric::ublas::mapped_matrix< T, L, A >::find_element ( size_type  i,
size_type  j 
) [inline]

Definition at line 377 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE const_pointer boost::numeric::ublas::mapped_matrix< T, L, A >::find_element ( size_type  i,
size_type  j 
) const [inline]

Definition at line 381 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE const_reference boost::numeric::ublas::mapped_matrix< T, L, A >::operator() ( size_type  i,
size_type  j 
) const [inline]

Definition at line 392 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE reference boost::numeric::ublas::mapped_matrix< T, L, A >::operator() ( size_type  i,
size_type  j 
) [inline]

Definition at line 401 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE true_reference boost::numeric::ublas::mapped_matrix< T, L, A >::insert_element ( size_type  i,
size_type  j,
const_reference  t 
) [inline]

Definition at line 414 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE void boost::numeric::ublas::mapped_matrix< T, L, A >::erase_element ( size_type  i,
size_type  j 
) [inline]

Definition at line 424 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE void boost::numeric::ublas::mapped_matrix< T, L, A >::clear ( ) [inline]

Definition at line 433 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE mapped_matrix& boost::numeric::ublas::mapped_matrix< T, L, A >::operator= ( const mapped_matrix< T, L, A > &  m) [inline]

Definition at line 439 of file matrix_sparse.hpp.

template<class T, class L, class A>
template<class C >
BOOST_UBLAS_INLINE mapped_matrix& boost::numeric::ublas::mapped_matrix< T, L, A >::operator= ( const matrix_container< C > &  m) [inline]

Definition at line 449 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE mapped_matrix& boost::numeric::ublas::mapped_matrix< T, L, A >::assign_temporary ( mapped_matrix< T, L, A > &  m) [inline]

Definition at line 455 of file matrix_sparse.hpp.

template<class T, class L, class A>
template<class AE >
BOOST_UBLAS_INLINE mapped_matrix& boost::numeric::ublas::mapped_matrix< T, L, A >::operator= ( const matrix_expression< AE > &  ae) [inline]

Definition at line 461 of file matrix_sparse.hpp.

template<class T, class L, class A>
template<class AE >
BOOST_UBLAS_INLINE mapped_matrix& boost::numeric::ublas::mapped_matrix< T, L, A >::assign ( const matrix_expression< AE > &  ae) [inline]

Definition at line 467 of file matrix_sparse.hpp.

template<class T, class L, class A>
template<class AE >
BOOST_UBLAS_INLINE mapped_matrix& boost::numeric::ublas::mapped_matrix< T, L, A >::operator+= ( const matrix_expression< AE > &  ae) [inline]

Definition at line 473 of file matrix_sparse.hpp.

template<class T, class L, class A>
template<class C >
BOOST_UBLAS_INLINE mapped_matrix& boost::numeric::ublas::mapped_matrix< T, L, A >::operator+= ( const matrix_container< C > &  m) [inline]

Definition at line 479 of file matrix_sparse.hpp.

template<class T, class L, class A>
template<class AE >
BOOST_UBLAS_INLINE mapped_matrix& boost::numeric::ublas::mapped_matrix< T, L, A >::plus_assign ( const matrix_expression< AE > &  ae) [inline]

Definition at line 485 of file matrix_sparse.hpp.

template<class T, class L, class A>
template<class AE >
BOOST_UBLAS_INLINE mapped_matrix& boost::numeric::ublas::mapped_matrix< T, L, A >::operator-= ( const matrix_expression< AE > &  ae) [inline]

Definition at line 491 of file matrix_sparse.hpp.

template<class T, class L, class A>
template<class C >
BOOST_UBLAS_INLINE mapped_matrix& boost::numeric::ublas::mapped_matrix< T, L, A >::operator-= ( const matrix_container< C > &  m) [inline]

Definition at line 497 of file matrix_sparse.hpp.

template<class T, class L, class A>
template<class AE >
BOOST_UBLAS_INLINE mapped_matrix& boost::numeric::ublas::mapped_matrix< T, L, A >::minus_assign ( const matrix_expression< AE > &  ae) [inline]

Definition at line 503 of file matrix_sparse.hpp.

template<class T, class L, class A>
template<class AT >
BOOST_UBLAS_INLINE mapped_matrix& boost::numeric::ublas::mapped_matrix< T, L, A >::operator*= ( const AT &  at) [inline]

Definition at line 509 of file matrix_sparse.hpp.

template<class T, class L, class A>
template<class AT >
BOOST_UBLAS_INLINE mapped_matrix& boost::numeric::ublas::mapped_matrix< T, L, A >::operator/= ( const AT &  at) [inline]

Definition at line 515 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE void boost::numeric::ublas::mapped_matrix< T, L, A >::swap ( mapped_matrix< T, L, A > &  m) [inline]

Definition at line 522 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE true_reference boost::numeric::ublas::mapped_matrix< T, L, A >::at_element ( size_type  i,
size_type  j 
) [inline, private]

Definition at line 541 of file matrix_sparse.hpp.

template<class T, class L, class A>
const_iterator1 boost::numeric::ublas::mapped_matrix< T, L, A >::find1 ( int  rank,
size_type  i,
size_type  j,
int  direction = 1 
) const [inline]

Definition at line 561 of file matrix_sparse.hpp.

template<class T, class L, class A>
iterator1 boost::numeric::ublas::mapped_matrix< T, L, A >::find1 ( int  rank,
size_type  i,
size_type  j,
int  direction = 1 
) [inline]

Definition at line 590 of file matrix_sparse.hpp.

template<class T, class L, class A>
const_iterator2 boost::numeric::ublas::mapped_matrix< T, L, A >::find2 ( int  rank,
size_type  i,
size_type  j,
int  direction = 1 
) const [inline]

Definition at line 619 of file matrix_sparse.hpp.

template<class T, class L, class A>
iterator2 boost::numeric::ublas::mapped_matrix< T, L, A >::find2 ( int  rank,
size_type  i,
size_type  j,
int  direction = 1 
) [inline]

Definition at line 648 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE const_iterator1 boost::numeric::ublas::mapped_matrix< T, L, A >::begin1 ( ) const [inline]

Definition at line 819 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE const_iterator1 boost::numeric::ublas::mapped_matrix< T, L, A >::end1 ( ) const [inline]

Definition at line 823 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE iterator1 boost::numeric::ublas::mapped_matrix< T, L, A >::begin1 ( ) [inline]

Definition at line 967 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE iterator1 boost::numeric::ublas::mapped_matrix< T, L, A >::end1 ( ) [inline]

Definition at line 971 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE const_iterator2 boost::numeric::ublas::mapped_matrix< T, L, A >::begin2 ( ) const [inline]

Definition at line 1116 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE const_iterator2 boost::numeric::ublas::mapped_matrix< T, L, A >::end2 ( ) const [inline]

Definition at line 1120 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE iterator2 boost::numeric::ublas::mapped_matrix< T, L, A >::begin2 ( ) [inline]

Definition at line 1264 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE iterator2 boost::numeric::ublas::mapped_matrix< T, L, A >::end2 ( ) [inline]

Definition at line 1268 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE const_reverse_iterator1 boost::numeric::ublas::mapped_matrix< T, L, A >::rbegin1 ( ) const [inline]

Definition at line 1275 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE const_reverse_iterator1 boost::numeric::ublas::mapped_matrix< T, L, A >::rend1 ( ) const [inline]

Definition at line 1279 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE reverse_iterator1 boost::numeric::ublas::mapped_matrix< T, L, A >::rbegin1 ( ) [inline]

Definition at line 1284 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE reverse_iterator1 boost::numeric::ublas::mapped_matrix< T, L, A >::rend1 ( ) [inline]

Definition at line 1288 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE const_reverse_iterator2 boost::numeric::ublas::mapped_matrix< T, L, A >::rbegin2 ( ) const [inline]

Definition at line 1293 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE const_reverse_iterator2 boost::numeric::ublas::mapped_matrix< T, L, A >::rend2 ( ) const [inline]

Definition at line 1297 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE reverse_iterator2 boost::numeric::ublas::mapped_matrix< T, L, A >::rbegin2 ( ) [inline]

Definition at line 1302 of file matrix_sparse.hpp.

template<class T, class L, class A>
BOOST_UBLAS_INLINE reverse_iterator2 boost::numeric::ublas::mapped_matrix< T, L, A >::rend2 ( ) [inline]

Definition at line 1306 of file matrix_sparse.hpp.

template<class T, class L, class A>
template<class Archive >
void boost::numeric::ublas::mapped_matrix< T, L, A >::serialize ( Archive &  ar,
const unsigned  int 
) [inline]

Definition at line 1312 of file matrix_sparse.hpp.

BOOST_UBLAS_INLINE const container_type& boost::numeric::ublas::matrix_container< mapped_matrix< T, L, A > >::operator() ( ) const [inline, inherited]
BOOST_UBLAS_INLINE container_type& boost::numeric::ublas::matrix_container< mapped_matrix< T, L, A > >::operator() ( ) [inline, inherited]

Friends And Related Function Documentation

template<class T, class L, class A>
BOOST_UBLAS_INLINE friend void swap ( mapped_matrix< T, L, A > &  m1,
mapped_matrix< T, L, A > &  m2 
) [friend]

Definition at line 530 of file matrix_sparse.hpp.


Member Data Documentation

template<class T, class L, class A>
size_type boost::numeric::ublas::mapped_matrix< T, L, A >::size1_ [private]

Definition at line 1325 of file matrix_sparse.hpp.

template<class T, class L, class A>
size_type boost::numeric::ublas::mapped_matrix< T, L, A >::size2_ [private]

Definition at line 1326 of file matrix_sparse.hpp.

template<class T, class L, class A>
array_type boost::numeric::ublas::mapped_matrix< T, L, A >::data_ [private]

Definition at line 1327 of file matrix_sparse.hpp.

template<class T, class L, class A>
const mapped_matrix< T, L, A >::value_type boost::numeric::ublas::mapped_matrix< T, L, A >::zero_ = value_type() [static, private]

Definition at line 1328 of file matrix_sparse.hpp.

const unsigned boost::numeric::ublas::matrix_container< mapped_matrix< T, L, A > >::complexity [static, inherited]

The documentation for this class was generated from the following file: