![]() |
Boost.uBlas 1.49
Linear Algebra in C++: matrices, vectors and numeric algorithms
|
#include <matrix_proxy.hpp>
Classes | |
class | const_iterator |
class | iterator |
Public Types | |
typedef self_type | closure_type |
typedef const self_type | const_closure_type |
typedef M::const_reference | const_reference |
typedef reverse_iterator_base < const_iterator > | const_reverse_iterator |
typedef M::difference_type | difference_type |
typedef matrix_column< M > | expression_type |
typedef boost::mpl::if_ < boost::is_const< M > , typename M::const_closure_type, typename M::closure_type > ::type | matrix_closure_type |
typedef M | matrix_type |
typedef boost::mpl::if_ < boost::is_const< M > , typename M::const_reference, typename M::reference >::type | reference |
typedef reverse_iterator_base < iterator > | reverse_iterator |
typedef M::size_type | size_type |
typedef storage_restrict_traits < typename M::storage_category, dense_proxy_tag > ::storage_category | storage_category |
typedef vector_tag | type_category |
typedef M::value_type | value_type |
Public Member Functions | |
BOOST_UBLAS_INLINE | matrix_column (matrix_type &data, size_type j) |
template<class AE > | |
BOOST_UBLAS_INLINE matrix_column & | assign (const vector_expression< AE > &ae) |
BOOST_UBLAS_INLINE matrix_column & | assign_temporary (matrix_column &mc) |
BOOST_UBLAS_INLINE const_iterator | begin () const |
BOOST_UBLAS_INLINE iterator | begin () |
BOOST_UBLAS_INLINE const matrix_closure_type & | data () const |
BOOST_UBLAS_INLINE matrix_closure_type & | data () |
BOOST_UBLAS_INLINE const_iterator | end () const |
BOOST_UBLAS_INLINE iterator | end () |
BOOST_UBLAS_INLINE const_iterator | find (size_type i) const |
BOOST_UBLAS_INLINE iterator | find (size_type i) |
BOOST_UBLAS_INLINE size_type | index () const |
template<class AE > | |
BOOST_UBLAS_INLINE matrix_column & | minus_assign (const vector_expression< AE > &ae) |
BOOST_UBLAS_INLINE const expression_type & | operator() () const |
BOOST_UBLAS_INLINE expression_type & | operator() () |
BOOST_UBLAS_INLINE const_reference | operator() (size_type i) const |
BOOST_UBLAS_INLINE reference | operator() (size_type i) |
template<class AT > | |
BOOST_UBLAS_INLINE matrix_column & | operator*= (const AT &at) |
template<class AE > | |
BOOST_UBLAS_INLINE matrix_column & | operator+= (const vector_expression< AE > &ae) |
template<class AE > | |
BOOST_UBLAS_INLINE matrix_column & | operator-= (const vector_expression< AE > &ae) |
template<class AT > | |
BOOST_UBLAS_INLINE matrix_column & | operator/= (const AT &at) |
BOOST_UBLAS_INLINE matrix_column & | operator= (const matrix_column &mc) |
template<class AE > | |
BOOST_UBLAS_INLINE matrix_column & | operator= (const vector_expression< AE > &ae) |
BOOST_UBLAS_INLINE bool | operator== (const matrix_column &mc) const |
BOOST_UBLAS_INLINE reference | operator[] (size_type i) |
BOOST_UBLAS_INLINE const_reference | operator[] (size_type i) const |
template<class AE > | |
BOOST_UBLAS_INLINE matrix_column & | plus_assign (const vector_expression< AE > &ae) |
BOOST_UBLAS_INLINE const_reverse_iterator | rbegin () const |
reverse_iterator | rbegin () |
BOOST_UBLAS_INLINE reverse_iterator | rend () |
BOOST_UBLAS_INLINE const_reverse_iterator | rend () const |
BOOST_UBLAS_INLINE bool | same_closure (const matrix_column &mc) const |
BOOST_UBLAS_INLINE size_type | size () const |
BOOST_UBLAS_INLINE void | swap (matrix_column mc) |
Static Public Attributes | |
static const unsigned | complexity |
Private Types | |
typedef M::const_iterator1 | const_subiterator_type |
typedef matrix_column< M > | self_type |
typedef boost::mpl::if_ < boost::is_const< M > , typename M::const_iterator1, typename M::iterator1 >::type | subiterator_type |
Private Attributes | |
matrix_closure_type | data_ |
size_type | j_ |
Friends | |
BOOST_UBLAS_INLINE friend void | swap (matrix_column mc1, matrix_column mc2) |
Definition at line 485 of file matrix_proxy.hpp.
typedef matrix_column<M> boost::numeric::ublas::matrix_column< M >::self_type [private] |
Definition at line 488 of file matrix_proxy.hpp.
typedef M boost::numeric::ublas::matrix_column< M >::matrix_type |
Definition at line 493 of file matrix_proxy.hpp.
typedef M::size_type boost::numeric::ublas::matrix_column< M >::size_type |
Definition at line 494 of file matrix_proxy.hpp.
typedef M::difference_type boost::numeric::ublas::matrix_column< M >::difference_type |
Definition at line 495 of file matrix_proxy.hpp.
typedef M::value_type boost::numeric::ublas::matrix_column< M >::value_type |
Definition at line 496 of file matrix_proxy.hpp.
typedef M::const_reference boost::numeric::ublas::matrix_column< M >::const_reference |
Definition at line 497 of file matrix_proxy.hpp.
typedef boost::mpl::if_<boost::is_const<M>, typename M::const_reference, typename M::reference>::type boost::numeric::ublas::matrix_column< M >::reference |
Definition at line 500 of file matrix_proxy.hpp.
typedef boost::mpl::if_<boost::is_const<M>, typename M::const_closure_type, typename M::closure_type>::type boost::numeric::ublas::matrix_column< M >::matrix_closure_type |
Definition at line 503 of file matrix_proxy.hpp.
typedef const self_type boost::numeric::ublas::matrix_column< M >::const_closure_type |
Definition at line 504 of file matrix_proxy.hpp.
typedef self_type boost::numeric::ublas::matrix_column< M >::closure_type |
Definition at line 505 of file matrix_proxy.hpp.
typedef storage_restrict_traits<typename M::storage_category, dense_proxy_tag>::storage_category boost::numeric::ublas::matrix_column< M >::storage_category |
Definition at line 507 of file matrix_proxy.hpp.
typedef M::const_iterator1 boost::numeric::ublas::matrix_column< M >::const_subiterator_type [private] |
Definition at line 659 of file matrix_proxy.hpp.
typedef boost::mpl::if_<boost::is_const<M>, typename M::const_iterator1, typename M::iterator1>::type boost::numeric::ublas::matrix_column< M >::subiterator_type [private] |
Definition at line 662 of file matrix_proxy.hpp.
typedef reverse_iterator_base<const_iterator> boost::numeric::ublas::matrix_column< M >::const_reverse_iterator |
Definition at line 895 of file matrix_proxy.hpp.
typedef reverse_iterator_base<iterator> boost::numeric::ublas::matrix_column< M >::reverse_iterator |
Definition at line 896 of file matrix_proxy.hpp.
typedef matrix_column< M > boost::numeric::ublas::vector_expression< matrix_column< M > >::expression_type [inherited] |
Reimplemented from boost::numeric::ublas::ublas_expression< matrix_column< M > >.
Definition at line 187 of file expression_types.hpp.
typedef vector_tag boost::numeric::ublas::vector_expression< matrix_column< M > >::type_category [inherited] |
Definition at line 188 of file expression_types.hpp.
BOOST_UBLAS_INLINE boost::numeric::ublas::matrix_column< M >::matrix_column | ( | matrix_type & | data, |
size_type | j | ||
) | [inline] |
Definition at line 511 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE size_type boost::numeric::ublas::matrix_column< M >::size | ( | ) | const [inline] |
Definition at line 519 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE size_type boost::numeric::ublas::matrix_column< M >::index | ( | ) | const [inline] |
Definition at line 523 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE const matrix_closure_type& boost::numeric::ublas::matrix_column< M >::data | ( | ) | const [inline] |
Definition at line 529 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE matrix_closure_type& boost::numeric::ublas::matrix_column< M >::data | ( | ) | [inline] |
Definition at line 533 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE const_reference boost::numeric::ublas::matrix_column< M >::operator() | ( | size_type | i | ) | const [inline] |
Definition at line 540 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE reference boost::numeric::ublas::matrix_column< M >::operator() | ( | size_type | i | ) | [inline] |
Definition at line 544 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE const_reference boost::numeric::ublas::matrix_column< M >::operator[] | ( | size_type | i | ) | const [inline] |
Definition at line 549 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE reference boost::numeric::ublas::matrix_column< M >::operator[] | ( | size_type | i | ) | [inline] |
Definition at line 553 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE matrix_column& boost::numeric::ublas::matrix_column< M >::operator= | ( | const matrix_column< M > & | mc | ) | [inline] |
Definition at line 570 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE matrix_column& boost::numeric::ublas::matrix_column< M >::assign_temporary | ( | matrix_column< M > & | mc | ) | [inline] |
Definition at line 576 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE matrix_column& boost::numeric::ublas::matrix_column< M >::operator= | ( | const vector_expression< AE > & | ae | ) | [inline] |
Definition at line 583 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE matrix_column& boost::numeric::ublas::matrix_column< M >::assign | ( | const vector_expression< AE > & | ae | ) | [inline] |
Definition at line 589 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE matrix_column& boost::numeric::ublas::matrix_column< M >::operator+= | ( | const vector_expression< AE > & | ae | ) | [inline] |
Definition at line 595 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE matrix_column& boost::numeric::ublas::matrix_column< M >::plus_assign | ( | const vector_expression< AE > & | ae | ) | [inline] |
Definition at line 601 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE matrix_column& boost::numeric::ublas::matrix_column< M >::operator-= | ( | const vector_expression< AE > & | ae | ) | [inline] |
Definition at line 607 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE matrix_column& boost::numeric::ublas::matrix_column< M >::minus_assign | ( | const vector_expression< AE > & | ae | ) | [inline] |
Definition at line 613 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE matrix_column& boost::numeric::ublas::matrix_column< M >::operator*= | ( | const AT & | at | ) | [inline] |
Definition at line 619 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE matrix_column& boost::numeric::ublas::matrix_column< M >::operator/= | ( | const AT & | at | ) | [inline] |
Definition at line 625 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE bool boost::numeric::ublas::matrix_column< M >::same_closure | ( | const matrix_column< M > & | mc | ) | const [inline] |
Definition at line 632 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE bool boost::numeric::ublas::matrix_column< M >::operator== | ( | const matrix_column< M > & | mc | ) | const [inline] |
Definition at line 638 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE void boost::numeric::ublas::matrix_column< M >::swap | ( | matrix_column< M > | mc | ) | [inline] |
Definition at line 644 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE const_iterator boost::numeric::ublas::matrix_column< M >::find | ( | size_type | i | ) | const [inline] |
Definition at line 677 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE iterator boost::numeric::ublas::matrix_column< M >::find | ( | size_type | i | ) | [inline] |
Definition at line 686 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE const_iterator boost::numeric::ublas::matrix_column< M >::begin | ( | ) | const [inline] |
Definition at line 787 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE const_iterator boost::numeric::ublas::matrix_column< M >::end | ( | ) | const [inline] |
Definition at line 791 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE iterator boost::numeric::ublas::matrix_column< M >::begin | ( | ) | [inline] |
Definition at line 886 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE iterator boost::numeric::ublas::matrix_column< M >::end | ( | ) | [inline] |
Definition at line 890 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE const_reverse_iterator boost::numeric::ublas::matrix_column< M >::rbegin | ( | ) | const [inline] |
Definition at line 899 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE const_reverse_iterator boost::numeric::ublas::matrix_column< M >::rend | ( | ) | const [inline] |
Definition at line 903 of file matrix_proxy.hpp.
reverse_iterator boost::numeric::ublas::matrix_column< M >::rbegin | ( | ) | [inline] |
Definition at line 906 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE reverse_iterator boost::numeric::ublas::matrix_column< M >::rend | ( | ) | [inline] |
Definition at line 910 of file matrix_proxy.hpp.
BOOST_UBLAS_INLINE const expression_type& boost::numeric::ublas::vector_expression< matrix_column< M > >::operator() | ( | ) | const [inline, inherited] |
Definition at line 194 of file expression_types.hpp.
BOOST_UBLAS_INLINE expression_type& boost::numeric::ublas::vector_expression< matrix_column< M > >::operator() | ( | ) | [inline, inherited] |
Definition at line 198 of file expression_types.hpp.
BOOST_UBLAS_INLINE friend void swap | ( | matrix_column< M > | mc1, |
matrix_column< M > | mc2 | ||
) | [friend] |
Definition at line 653 of file matrix_proxy.hpp.
matrix_closure_type boost::numeric::ublas::matrix_column< M >::data_ [private] |
Definition at line 915 of file matrix_proxy.hpp.
size_type boost::numeric::ublas::matrix_column< M >::j_ [private] |
Definition at line 916 of file matrix_proxy.hpp.
const unsigned boost::numeric::ublas::vector_expression< matrix_column< M > >::complexity [static, inherited] |
Definition at line 186 of file expression_types.hpp.