|
BOOST_UBLAS_INLINE | identity_matrix (size_type size) |
|
BOOST_UBLAS_INLINE | identity_matrix (size_type size1, size_type size2) |
|
BOOST_UBLAS_INLINE | identity_matrix (const identity_matrix &m) |
|
BOOST_UBLAS_INLINE size_type | size1 () const |
|
BOOST_UBLAS_INLINE size_type | size2 () const |
|
BOOST_UBLAS_INLINE void | resize (size_type size, bool=true) |
|
BOOST_UBLAS_INLINE void | resize (size_type size1, size_type size2, bool=true) |
|
BOOST_UBLAS_INLINE const_reference | operator() (size_type i, size_type j) const |
|
BOOST_UBLAS_INLINE identity_matrix & | operator= (const identity_matrix &m) |
|
BOOST_UBLAS_INLINE identity_matrix & | assign_temporary (identity_matrix &m) |
|
BOOST_UBLAS_INLINE void | swap (identity_matrix &m) |
|
BOOST_UBLAS_INLINE const_iterator1 | find1 (int rank, size_type i, size_type j) const |
|
BOOST_UBLAS_INLINE const_iterator2 | find2 (int rank, size_type i, size_type j) const |
|
BOOST_UBLAS_INLINE const_iterator1 | begin1 () const |
|
BOOST_UBLAS_INLINE const_iterator1 | cbegin1 () const |
|
BOOST_UBLAS_INLINE const_iterator1 | end1 () const |
|
BOOST_UBLAS_INLINE const_iterator1 | cend1 () const |
|
BOOST_UBLAS_INLINE const_iterator2 | begin2 () const |
|
BOOST_UBLAS_INLINE const_iterator2 | cbegin2 () const |
|
BOOST_UBLAS_INLINE const_iterator2 | end2 () const |
|
BOOST_UBLAS_INLINE const_iterator2 | cend2 () const |
|
BOOST_UBLAS_INLINE const_reverse_iterator1 | rbegin1 () const |
|
BOOST_UBLAS_INLINE const_reverse_iterator1 | crbegin1 () const |
|
BOOST_UBLAS_INLINE const_reverse_iterator1 | rend1 () const |
|
BOOST_UBLAS_INLINE const_reverse_iterator1 | crend1 () const |
|
BOOST_UBLAS_INLINE const_reverse_iterator2 | rbegin2 () const |
|
BOOST_UBLAS_INLINE const_reverse_iterator2 | crbegin2 () const |
|
BOOST_UBLAS_INLINE const_reverse_iterator2 | rend2 () const |
|
BOOST_UBLAS_INLINE const_reverse_iterator2 | crend2 () const |
|
template<class Archive > |
void | serialize (Archive &ar, const unsigned int) |
|
BOOST_UBLAS_INLINE const container_type & | operator() () const |
|
BOOST_UBLAS_INLINE container_type & | operator() () |
|
template<class T, class ALLOC>
class BFL::boost::numeric::ublas::identity_matrix< T, ALLOC >
An identity matrix with values of type T
.
Elements or cordinates
are equal to 1 (one) and all others to 0 (zero). Changing values does not affect the matrix, however assigning it to a normal matrix will make the matrix equal to an identity matrix. All accesses are constant du to the trivial values.
- Template Parameters
-
T | the type of object stored in the matrix (like double, float, complex, etc...) |
ALLOC | an allocator for storing the zeros and one elements. By default, a standar allocator is used. |
Definition at line 144 of file asirfilter.h.