Boost  v1.57.0
doxygen for www.boost.org
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
boost::numeric::ublas::bounded_vector< T, N > Class Template Reference

a dense vector of values of type T, of variable size but with maximum $N$. More...

#include <vector.hpp>

Inheritance diagram for boost::numeric::ublas::bounded_vector< T, N >:
Collaboration diagram for boost::numeric::ublas::bounded_vector< T, N >:

Public Types

typedef vector_type::size_type size_type
 
typedef bounded_array< T, N >
::difference_type 
difference_type
 
typedef T value_type
 
typedef type_traits< T >
::const_reference 
const_reference
 
typedef Treference
 
typedef Tpointer
 
typedef const Tconst_pointer
 
typedef bounded_array< T, Narray_type
 
typedef const vector_reference
< const self_type
const_closure_type
 
typedef vector_reference
< self_type
closure_type
 
typedef self_type vector_temporary_type
 
typedef dense_tag storage_category
 
typedef reverse_iterator_base
< const_iterator > 
const_reverse_iterator
 
typedef reverse_iterator_base
< iterator > 
reverse_iterator
 
typedef vector< T,
bounded_array< T, N > > 
container_type
 
typedef vector_tag type_category
 
typedef E expression_type
 

Public Member Functions

BOOST_UBLAS_INLINE bounded_vector ()
 
BOOST_UBLAS_INLINE bounded_vector (size_type size)
 
BOOST_UBLAS_INLINE bounded_vector (const bounded_vector &v)
 
template<class A2 >
BOOST_UBLAS_INLINE bounded_vector (const vector< T, A2 > &v)
 
template<class AE >
BOOST_UBLAS_INLINE bounded_vector (const vector_expression< AE > &ae)
 
BOOST_UBLAS_INLINE ~bounded_vector ()
 
BOOST_UBLAS_INLINE bounded_vectoroperator= (const bounded_vector &v)
 
template<class A2 >
BOOST_UBLAS_INLINE bounded_vectoroperator= (const vector< T, A2 > &v)
 
template<class C >
BOOST_UBLAS_INLINE bounded_vectoroperator= (const vector_container< C > &v)
 
template<class AE >
BOOST_UBLAS_INLINE bounded_vectoroperator= (const vector_expression< AE > &ae)
 
BOOST_UBLAS_INLINE size_type max_size () const
 Return the maximum size of the data container. More...
 
BOOST_UBLAS_INLINE bool empty () const
 Return true if the vector is empty (size==0) More...
 
BOOST_UBLAS_INLINE size_type size () const
 Return the size of the vector. More...
 
BOOST_UBLAS_INLINE const
array_type
data () const
 Return a const reference to the container. Useful to access data directly for specific type of container. More...
 
BOOST_UBLAS_INLINE array_typedata ()
 Return a reference to the container. Useful to speed-up write operations to the data in very specific case. More...
 
BOOST_UBLAS_INLINE void resize (size_type size, bool preserve=true)
 Resize the vector Resize the vector to a new size. More...
 
BOOST_UBLAS_INLINE pointer find_element (size_type i)
 Return a pointer to the element $i$. More...
 
BOOST_UBLAS_INLINE const_pointer find_element (size_type i) const
 Return a const pointer to the element $i$. More...
 
BOOST_UBLAS_INLINE const_reference operator() (size_type i) const
 Return a const reference to the element $i$ Return a const reference to the element $i$. More...
 
BOOST_UBLAS_INLINE reference operator() (size_type i)
 Return a reference to the element $i$ Return a reference to the element $i$. More...
 
BOOST_UBLAS_INLINE const
container_type
operator() () const
 
BOOST_UBLAS_INLINE container_typeoperator() ()
 
BOOST_UBLAS_INLINE const_reference operator[] (size_type i) const
 Return a const reference to the element $i$. More...
 
BOOST_UBLAS_INLINE reference operator[] (size_type i)
 Return a reference to the element $i$. More...
 
BOOST_UBLAS_INLINE reference insert_element (size_type i, const_reference t)
 Set element $i$ to the value t. More...
 
BOOST_UBLAS_INLINE void erase_element (size_type i)
 Set element $i$ to the zero value. More...
 
BOOST_UBLAS_INLINE void clear ()
 Clear the vector, i.e. set all values to the zero value. More...
 
BOOST_UBLAS_INLINE vectorassign_temporary (vector &v)
 Assign a full vector (RHS-vector) to the current vector (LHS-vector) More...
 
BOOST_UBLAS_INLINE vectorassign (const vector_expression< AE > &ae)
 Assign the result of a vector_expression to the vector Assign the result of a vector_expression to the vector. More...
 
BOOST_UBLAS_INLINE vectoroperator+= (const vector_expression< AE > &ae)
 Assign the sum of the vector and a vector_expression to the vector Assign the sum of the vector and a vector_expression to the vector. More...
 
BOOST_UBLAS_INLINE vectoroperator+= (const vector_container< C > &v)
 Assign the sum of the vector and a vector_expression to the vector Assign the sum of the vector and a vector_expression to the vector. More...
 
BOOST_UBLAS_INLINE vectorplus_assign (const vector_expression< AE > &ae)
 Assign the sum of the vector and a vector_expression to the vector Assign the sum of the vector and a vector_expression to the vector. More...
 
BOOST_UBLAS_INLINE vectoroperator-= (const vector_expression< AE > &ae)
 Assign the difference of the vector and a vector_expression to the vector Assign the difference of the vector and a vector_expression to the vector. More...
 
BOOST_UBLAS_INLINE vectoroperator-= (const vector_container< C > &v)
 Assign the difference of the vector and a vector_expression to the vector Assign the difference of the vector and a vector_expression to the vector. More...
 
BOOST_UBLAS_INLINE vectorminus_assign (const vector_expression< AE > &ae)
 Assign the difference of the vector and a vector_expression to the vector Assign the difference of the vector and a vector_expression to the vector. More...
 
BOOST_UBLAS_INLINE vectoroperator*= (const AT &at)
 Assign the product of the vector and a scalar to the vector Assign the product of the vector and a scalar to the vector. More...
 
BOOST_UBLAS_INLINE vectoroperator/= (const AT &at)
 Assign the division of the vector by a scalar to the vector Assign the division of the vector by a scalar to the vector. More...
 
BOOST_UBLAS_INLINE void swap (vector &v)
 Swap the content of the vector with another vector. More...
 
BOOST_UBLAS_INLINE const_iterator find (size_type i) const
 Return a const iterator to the element i. More...
 
BOOST_UBLAS_INLINE iterator find (size_type i)
 Return an iterator to the element i. More...
 
BOOST_UBLAS_INLINE const_iterator begin () const
 return an iterator on the first element of the vector More...
 
BOOST_UBLAS_INLINE iterator begin ()
 Return an iterator on the first element of the vector. More...
 
BOOST_UBLAS_INLINE const_iterator cbegin () const
 return an iterator on the first element of the vector More...
 
BOOST_UBLAS_INLINE const_iterator end () const
 return an iterator after the last element of the vector More...
 
BOOST_UBLAS_INLINE iterator end ()
 Return an iterator at the end of the vector. More...
 
BOOST_UBLAS_INLINE const_iterator cend () const
 return an iterator after the last element of the vector More...
 
BOOST_UBLAS_INLINE
const_reverse_iterator 
rbegin () const
 Return a const reverse iterator before the first element of the reversed vector (i.e. end() of normal vector) More...
 
BOOST_UBLAS_INLINE reverse_iterator rbegin ()
 Return a const reverse iterator before the first element of the reversed vector (i.e. end() of normal vector) More...
 
BOOST_UBLAS_INLINE
const_reverse_iterator 
crbegin () const
 Return a const reverse iterator before the first element of the reversed vector (i.e. end() of normal vector) More...
 
BOOST_UBLAS_INLINE
const_reverse_iterator 
rend () const
 Return a const reverse iterator on the end of the reverse vector (i.e. first element of the normal vector) More...
 
BOOST_UBLAS_INLINE reverse_iterator rend ()
 Return a const reverse iterator on the end of the reverse vector (i.e. first element of the normal vector) More...
 
BOOST_UBLAS_INLINE
const_reverse_iterator 
crend () const
 Return a const reverse iterator on the end of the reverse vector (i.e. first element of the normal vector) More...
 
void serialize (Archive &ar, const unsigned int)
 Serialize a vector into and archive as defined in Boost. More...
 

Static Public Attributes

static const size_type max_size = N
 
static const unsigned complexity
 

Detailed Description

template<class T, std::size_t N>
class boost::numeric::ublas::bounded_vector< T, N >

a dense vector of values of type T, of variable size but with maximum $N$.

A dense vector of values of type T, of variable size but with maximum $N$. The default constructor creates the vector with size $N$. Elements are constructed by the storage type bounded_array, which need not initialise their value.

Member Typedef Documentation

typedef const T* boost::numeric::ublas::vector< T, bounded_array< T, N > >::const_pointer
inherited
typedef reverse_iterator_base<const_iterator> boost::numeric::ublas::vector< T, bounded_array< T, N > >::const_reverse_iterator
inherited
template<class E>
typedef E boost::numeric::ublas::vector_expression< E >::expression_type
inherited
typedef T* boost::numeric::ublas::vector< T, bounded_array< T, N > >::pointer
inherited
typedef reverse_iterator_base<iterator> boost::numeric::ublas::vector< T, bounded_array< T, N > >::reverse_iterator
inherited
template<class T , std::size_t N>
typedef vector_type::size_type boost::numeric::ublas::bounded_vector< T, N >::size_type

Constructor & Destructor Documentation

template<class T , std::size_t N>
BOOST_UBLAS_INLINE boost::numeric::ublas::bounded_vector< T, N >::bounded_vector ( )
inline
template<class T , std::size_t N>
BOOST_UBLAS_INLINE boost::numeric::ublas::bounded_vector< T, N >::bounded_vector ( size_type  size)
inline
template<class T , std::size_t N>
BOOST_UBLAS_INLINE boost::numeric::ublas::bounded_vector< T, N >::bounded_vector ( const bounded_vector< T, N > &  v)
inline
template<class T , std::size_t N>
template<class A2 >
BOOST_UBLAS_INLINE boost::numeric::ublas::bounded_vector< T, N >::bounded_vector ( const vector< T, A2 > &  v)
inline
template<class T , std::size_t N>
template<class AE >
BOOST_UBLAS_INLINE boost::numeric::ublas::bounded_vector< T, N >::bounded_vector ( const vector_expression< AE > &  ae)
inline
template<class T , std::size_t N>
BOOST_UBLAS_INLINE boost::numeric::ublas::bounded_vector< T, N >::~bounded_vector ( )
inline

Member Function Documentation

BOOST_UBLAS_INLINE vector& boost::numeric::ublas::vector< T, bounded_array< T, N > >::assign ( const vector_expression< AE > &  ae)
inlineinherited

Assign the result of a vector_expression to the vector Assign the result of a vector_expression to the vector.

This is lazy-compiled and will be optimized out by the compiler on any type of expression.

Template Parameters
AEis the type of the vector_expression
Parameters
aeis a const reference to the vector_expression
Returns
a reference to the resulting vector
BOOST_UBLAS_INLINE vector& boost::numeric::ublas::vector< T, bounded_array< T, N > >::assign_temporary ( vector< T, bounded_array< T, N > > &  v)
inlineinherited

Assign a full vector (RHS-vector) to the current vector (LHS-vector)

Parameters
vis the source vector
Returns
a reference to a vector (i.e. the destination vector)

References boost::numeric::ublas::vector< T, A >::swap().

BOOST_UBLAS_INLINE const_iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::begin ( void  ) const
inlineinherited

return an iterator on the first element of the vector

References boost::numeric::ublas::vector< T, A >::find().

BOOST_UBLAS_INLINE iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::begin ( void  )
inlineinherited

Return an iterator on the first element of the vector.

References boost::numeric::ublas::vector< T, A >::find().

BOOST_UBLAS_INLINE const_iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::cbegin ( ) const
inlineinherited

return an iterator on the first element of the vector

References boost::numeric::ublas::vector< T, A >::begin().

BOOST_UBLAS_INLINE const_iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::cend ( ) const
inlineinherited

return an iterator after the last element of the vector

References boost::numeric::ublas::vector< T, A >::end().

BOOST_UBLAS_INLINE void boost::numeric::ublas::vector< T, bounded_array< T, N > >::clear ( void  )
inlineinherited
BOOST_UBLAS_INLINE const_reverse_iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::crbegin ( ) const
inlineinherited

Return a const reverse iterator before the first element of the reversed vector (i.e. end() of normal vector)

References boost::numeric::ublas::vector< T, A >::rbegin().

BOOST_UBLAS_INLINE const_reverse_iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::crend ( ) const
inlineinherited

Return a const reverse iterator on the end of the reverse vector (i.e. first element of the normal vector)

References boost::numeric::ublas::vector< T, A >::rend().

BOOST_UBLAS_INLINE const array_type& boost::numeric::ublas::vector< T, bounded_array< T, N > >::data ( ) const
inlineinherited

Return a const reference to the container. Useful to access data directly for specific type of container.

BOOST_UBLAS_INLINE array_type& boost::numeric::ublas::vector< T, bounded_array< T, N > >::data ( )
inlineinherited

Return a reference to the container. Useful to speed-up write operations to the data in very specific case.

BOOST_UBLAS_INLINE bool boost::numeric::ublas::vector< T, bounded_array< T, N > >::empty ( void  ) const
inlineinherited

Return true if the vector is empty (size==0)

Returns
true if empty, false otherwise
BOOST_UBLAS_INLINE const_iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::end ( void  ) const
inlineinherited

return an iterator after the last element of the vector

References boost::numeric::ublas::vector< T, A >::find().

BOOST_UBLAS_INLINE iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::end ( void  )
inlineinherited

Return an iterator at the end of the vector.

References boost::numeric::ublas::vector< T, A >::find().

BOOST_UBLAS_INLINE void boost::numeric::ublas::vector< T, bounded_array< T, N > >::erase_element ( size_type  i)
inlineinherited

Set element $i$ to the zero value.

Parameters
iindex of the element

References boost::numeric::ublas::vector< T, A >::data(), and boost::multiprecision::backends::i.

BOOST_UBLAS_INLINE const_iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::find ( size_type  i) const
inlineinherited

Return a const iterator to the element i.

Parameters
iindex of the element

References boost::numeric::ublas::vector< T, A >::begin(), and boost::numeric::ublas::vector< T, A >::data().

BOOST_UBLAS_INLINE iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::find ( size_type  i)
inlineinherited

Return an iterator to the element i.

Parameters
iindex of the element

References boost::numeric::ublas::vector< T, A >::begin(), and boost::numeric::ublas::vector< T, A >::data().

BOOST_UBLAS_INLINE pointer boost::numeric::ublas::vector< T, bounded_array< T, N > >::find_element ( size_type  i)
inlineinherited

Return a pointer to the element $i$.

Parameters
iindex of the element
BOOST_UBLAS_INLINE const_pointer boost::numeric::ublas::vector< T, bounded_array< T, N > >::find_element ( size_type  i) const
inlineinherited

Return a const pointer to the element $i$.

Parameters
iindex of the element

References boost::numeric::ublas::vector< T, A >::data(), and boost::multiprecision::backends::i.

BOOST_UBLAS_INLINE reference boost::numeric::ublas::vector< T, bounded_array< T, N > >::insert_element ( size_type  i,
const_reference  t 
)
inlineinherited

Set element $i$ to the value t.

Parameters
iindex of the element
treference to the value to be set

References boost::numeric::ublas::vector< T, A >::data().

BOOST_UBLAS_INLINE size_type boost::numeric::ublas::vector< T, bounded_array< T, N > >::max_size ( void  ) const
inlineinherited

Return the maximum size of the data container.

Return the upper bound (maximum size) on the data container. Depending on the container, it can be bigger than the current size of the vector.

BOOST_UBLAS_INLINE vector& boost::numeric::ublas::vector< T, bounded_array< T, N > >::minus_assign ( const vector_expression< AE > &  ae)
inlineinherited

Assign the difference of the vector and a vector_expression to the vector Assign the difference of the vector and a vector_expression to the vector.

This is lazy-compiled and will be optimized out by the compiler on any type of expression. No temporary is created. Computations are done and stored directly into the resulting vector.

Template Parameters
AEis the type of the vector_expression
Parameters
aeis a const reference to the vector_expression
Returns
a reference to the resulting vector
BOOST_UBLAS_INLINE const_reference boost::numeric::ublas::vector< T, bounded_array< T, N > >::operator() ( size_type  i) const
inlineinherited

Return a const reference to the element $i$ Return a const reference to the element $i$.

With some compilers, this notation will be faster than [i]

Parameters
iindex of the element

References boost::numeric::ublas::vector< T, A >::data(), and boost::multiprecision::backends::i.

BOOST_UBLAS_INLINE reference boost::numeric::ublas::vector< T, bounded_array< T, N > >::operator() ( size_type  i)
inlineinherited

Return a reference to the element $i$ Return a reference to the element $i$.

With some compilers, this notation will be faster than [i]

Parameters
iindex of the element

References boost::numeric::ublas::vector< T, A >::data(), and boost::multiprecision::backends::i.

BOOST_UBLAS_INLINE const container_type& boost::numeric::ublas::vector_container< vector< T, bounded_array< T, N > > >::operator() ( ) const
inlineinherited
BOOST_UBLAS_INLINE container_type& boost::numeric::ublas::vector_container< vector< T, bounded_array< T, N > > >::operator() ( )
inlineinherited
BOOST_UBLAS_INLINE vector& boost::numeric::ublas::vector< T, bounded_array< T, N > >::operator*= ( const AT &  at)
inlineinherited

Assign the product of the vector and a scalar to the vector Assign the product of the vector and a scalar to the vector.

This is lazy-compiled and will be optimized out by the compiler on any type of expression. No temporary is created. Computations are done and stored directly into the resulting vector.

Template Parameters
AEis the type of the vector_expression
Parameters
atis a const reference to the scalar
Returns
a reference to the resulting vector

References boost::xpressive::at.

BOOST_UBLAS_INLINE vector& boost::numeric::ublas::vector< T, bounded_array< T, N > >::operator+= ( const vector_expression< AE > &  ae)
inlineinherited

Assign the sum of the vector and a vector_expression to the vector Assign the sum of the vector and a vector_expression to the vector.

This is lazy-compiled and will be optimized out by the compiler on any type of expression. A temporary is created for the computations.

Template Parameters
AEis the type of the vector_expression
Parameters
aeis a const reference to the vector_expression
Returns
a reference to the resulting vector

References boost::numeric::ublas::vector< T, A >::assign_temporary().

BOOST_UBLAS_INLINE vector& boost::numeric::ublas::vector< T, bounded_array< T, N > >::operator+= ( const vector_container< C > &  v)
inlineinherited

Assign the sum of the vector and a vector_expression to the vector Assign the sum of the vector and a vector_expression to the vector.

This is lazy-compiled and will be optimized out by the compiler on any type of expression. No temporary is created. Computations are done and stored directly into the resulting vector.

Template Parameters
AEis the type of the vector_expression
Parameters
aeis a const reference to the vector_expression
Returns
a reference to the resulting vector

References boost::numeric::ublas::vector< T, A >::plus_assign().

BOOST_UBLAS_INLINE vector& boost::numeric::ublas::vector< T, bounded_array< T, N > >::operator-= ( const vector_expression< AE > &  ae)
inlineinherited

Assign the difference of the vector and a vector_expression to the vector Assign the difference of the vector and a vector_expression to the vector.

This is lazy-compiled and will be optimized out by the compiler on any type of expression. A temporary is created for the computations.

Template Parameters
AEis the type of the vector_expression
Parameters
aeis a const reference to the vector_expression

References boost::numeric::ublas::vector< T, A >::assign_temporary().

BOOST_UBLAS_INLINE vector& boost::numeric::ublas::vector< T, bounded_array< T, N > >::operator-= ( const vector_container< C > &  v)
inlineinherited

Assign the difference of the vector and a vector_expression to the vector Assign the difference of the vector and a vector_expression to the vector.

This is lazy-compiled and will be optimized out by the compiler on any type of expression. No temporary is created. Computations are done and stored directly into the resulting vector.

Template Parameters
AEis the type of the vector_expression
Parameters
aeis a const reference to the vector_expression
Returns
a reference to the resulting vector

References boost::numeric::ublas::vector< T, A >::minus_assign().

BOOST_UBLAS_INLINE vector& boost::numeric::ublas::vector< T, bounded_array< T, N > >::operator/= ( const AT &  at)
inlineinherited

Assign the division of the vector by a scalar to the vector Assign the division of the vector by a scalar to the vector.

This is lazy-compiled and will be optimized out by the compiler on any type of expression. No temporary is created. Computations are done and stored directly into the resulting vector.

Template Parameters
AEis the type of the vector_expression
Parameters
atis a const reference to the scalar
Returns
a reference to the resulting vector

References boost::xpressive::at.

template<class T , std::size_t N>
BOOST_UBLAS_INLINE bounded_vector& boost::numeric::ublas::bounded_vector< T, N >::operator= ( const bounded_vector< T, N > &  v)
inline
template<class T , std::size_t N>
template<class A2 >
BOOST_UBLAS_INLINE bounded_vector& boost::numeric::ublas::bounded_vector< T, N >::operator= ( const vector< T, A2 > &  v)
inline
template<class T , std::size_t N>
template<class C >
BOOST_UBLAS_INLINE bounded_vector& boost::numeric::ublas::bounded_vector< T, N >::operator= ( const vector_container< C > &  v)
inline
template<class T , std::size_t N>
template<class AE >
BOOST_UBLAS_INLINE bounded_vector& boost::numeric::ublas::bounded_vector< T, N >::operator= ( const vector_expression< AE > &  ae)
inline
BOOST_UBLAS_INLINE const_reference boost::numeric::ublas::vector< T, bounded_array< T, N > >::operator[] ( size_type  i) const
inlineinherited

Return a const reference to the element $i$.

Parameters
iindex of the element

References boost::multiprecision::backends::i.

BOOST_UBLAS_INLINE reference boost::numeric::ublas::vector< T, bounded_array< T, N > >::operator[] ( size_type  i)
inlineinherited

Return a reference to the element $i$.

Parameters
iindex of the element

References boost::multiprecision::backends::i.

BOOST_UBLAS_INLINE vector& boost::numeric::ublas::vector< T, bounded_array< T, N > >::plus_assign ( const vector_expression< AE > &  ae)
inlineinherited

Assign the sum of the vector and a vector_expression to the vector Assign the sum of the vector and a vector_expression to the vector.

This is lazy-compiled and will be optimized out by the compiler on any type of expression. No temporary is created. Computations are done and stored directly into the resulting vector.

Template Parameters
AEis the type of the vector_expression
Parameters
aeis a const reference to the vector_expression
Returns
a reference to the resulting vector
BOOST_UBLAS_INLINE const_reverse_iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::rbegin ( ) const
inlineinherited

Return a const reverse iterator before the first element of the reversed vector (i.e. end() of normal vector)

References boost::numeric::ublas::vector< T, A >::end().

BOOST_UBLAS_INLINE reverse_iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::rbegin ( )
inlineinherited

Return a const reverse iterator before the first element of the reversed vector (i.e. end() of normal vector)

References boost::numeric::ublas::vector< T, A >::end().

BOOST_UBLAS_INLINE const_reverse_iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::rend ( ) const
inlineinherited

Return a const reverse iterator on the end of the reverse vector (i.e. first element of the normal vector)

References boost::numeric::ublas::vector< T, A >::begin().

BOOST_UBLAS_INLINE reverse_iterator boost::numeric::ublas::vector< T, bounded_array< T, N > >::rend ( )
inlineinherited

Return a const reverse iterator on the end of the reverse vector (i.e. first element of the normal vector)

References boost::numeric::ublas::vector< T, A >::begin().

BOOST_UBLAS_INLINE void boost::numeric::ublas::vector< T, bounded_array< T, N > >::resize ( size_type  size,
bool  preserve = true 
)
inlineinherited

Resize the vector Resize the vector to a new size.

If preserve is true, data are copied otherwise data are lost. If the new size is bigger, the remaining values are filled in with the initial value (0 by default) in the case of unbounded_array, which is the container by default. If the new size is smaller, last values are lost. This behaviour can be different if you explicitely specify another type of container.

Parameters
sizenew size of the vector
preserveif true, keep values

References boost::numeric::ublas::vector< T, A >::data().

void boost::numeric::ublas::vector< T, bounded_array< T, N > >::serialize ( Archive &  ar,
const unsigned  int 
)
inlineinherited

Serialize a vector into and archive as defined in Boost.

Parameters
arArchive object. Can be a flat file, an XML file or any other stream
file_versionOptional file version (not yet used)

References boost::serialization::make_nvp().

BOOST_UBLAS_INLINE size_type boost::numeric::ublas::vector< T, bounded_array< T, N > >::size ( void  ) const
inlineinherited

Return the size of the vector.

BOOST_UBLAS_INLINE void boost::numeric::ublas::vector< T, bounded_array< T, N > >::swap ( vector< T, bounded_array< T, N > > &  v)
inlineinherited

Swap the content of the vector with another vector.

Parameters
vis the vector to be swapped with

References boost::numeric::ublas::vector< T, A >::data().

Member Data Documentation

const unsigned boost::numeric::ublas::vector_container< vector< T, bounded_array< T, N > > >::complexity
staticinherited
template<class T , std::size_t N>
const size_type boost::numeric::ublas::bounded_vector< T, N >::max_size = N
static

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