123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- // Copyright 2008-2016 Conrad Sanderson (http://conradsanderson.id.au)
- // Copyright 2008-2016 National ICT Australia (NICTA)
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- // ------------------------------------------------------------------------
- //! \addtogroup subview_cube
- //! @{
- //! Class for storing data required to construct or apply operations to a subcube
- //! (i.e. where the subcube starts and ends as well as a reference/pointer to the original cube),
- template<typename eT>
- class subview_cube : public BaseCube<eT, subview_cube<eT> >
- {
- public:
-
- typedef eT elem_type;
- typedef typename get_pod_type<elem_type>::result pod_type;
-
- arma_aligned const Cube<eT>& m;
-
- const uword aux_row1;
- const uword aux_col1;
- const uword aux_slice1;
-
- const uword n_rows;
- const uword n_cols;
- const uword n_elem_slice;
- const uword n_slices;
- const uword n_elem;
-
-
- protected:
-
- arma_inline subview_cube(const Cube<eT>& in_m, const uword in_row1, const uword in_col1, const uword in_slice1, const uword in_n_rows, const uword in_n_cols, const uword in_n_slices);
-
-
- public:
-
- inline ~subview_cube();
-
- inline void operator= (const eT val);
- inline void operator+= (const eT val);
- inline void operator-= (const eT val);
- inline void operator*= (const eT val);
- inline void operator/= (const eT val);
-
- // deliberately returning void
- template<typename T1> inline void operator= (const BaseCube<eT,T1>& x);
- template<typename T1> inline void operator+= (const BaseCube<eT,T1>& x);
- template<typename T1> inline void operator-= (const BaseCube<eT,T1>& x);
- template<typename T1> inline void operator%= (const BaseCube<eT,T1>& x);
- template<typename T1> inline void operator/= (const BaseCube<eT,T1>& x);
-
- inline void operator= (const subview_cube& x);
- inline void operator+= (const subview_cube& x);
- inline void operator-= (const subview_cube& x);
- inline void operator%= (const subview_cube& x);
- inline void operator/= (const subview_cube& x);
-
- template<typename T1> inline void operator= (const Base<eT,T1>& x);
- template<typename T1> inline void operator+= (const Base<eT,T1>& x);
- template<typename T1> inline void operator-= (const Base<eT,T1>& x);
- template<typename T1> inline void operator%= (const Base<eT,T1>& x);
- template<typename T1> inline void operator/= (const Base<eT,T1>& x);
-
- template<typename gen_type> inline void operator=(const GenCube<eT,gen_type>& x);
-
- inline static void extract(Cube<eT>& out, const subview_cube& in);
- inline static void plus_inplace(Cube<eT>& out, const subview_cube& in);
- inline static void minus_inplace(Cube<eT>& out, const subview_cube& in);
- inline static void schur_inplace(Cube<eT>& out, const subview_cube& in);
- inline static void div_inplace(Cube<eT>& out, const subview_cube& in);
-
- inline static void extract(Mat<eT>& out, const subview_cube& in);
- inline static void plus_inplace(Mat<eT>& out, const subview_cube& in);
- inline static void minus_inplace(Mat<eT>& out, const subview_cube& in);
- inline static void schur_inplace(Mat<eT>& out, const subview_cube& in);
- inline static void div_inplace(Mat<eT>& out, const subview_cube& in);
-
- template<typename functor> inline void for_each(functor F);
- template<typename functor> inline void for_each(functor F) const;
-
- template<typename functor> inline void transform(functor F);
- template<typename functor> inline void imbue(functor F);
-
- #if defined(ARMA_USE_CXX11)
- inline void each_slice(const std::function< void( Mat<eT>&) >& F);
- inline void each_slice(const std::function< void(const Mat<eT>&) >& F) const;
- #endif
-
- inline void replace(const eT old_val, const eT new_val);
-
- inline void clean(const pod_type threshold);
-
- inline void fill(const eT val);
- inline void zeros();
- inline void ones();
- inline void randu();
- inline void randn();
-
- inline arma_warn_unused bool is_finite() const;
- inline arma_warn_unused bool is_zero(const pod_type tol = 0) const;
-
- inline arma_warn_unused bool has_inf() const;
- inline arma_warn_unused bool has_nan() const;
-
- inline eT at_alt (const uword i) const;
-
- inline eT& operator[](const uword i);
- inline eT operator[](const uword i) const;
-
- inline eT& operator()(const uword i);
- inline eT operator()(const uword i) const;
-
- arma_inline eT& operator()(const uword in_row, const uword in_col, const uword in_slice);
- arma_inline eT operator()(const uword in_row, const uword in_col, const uword in_slice) const;
-
- arma_inline eT& at(const uword in_row, const uword in_col, const uword in_slice);
- arma_inline eT at(const uword in_row, const uword in_col, const uword in_slice) const;
-
- arma_inline eT* slice_colptr(const uword in_slice, const uword in_col);
- arma_inline const eT* slice_colptr(const uword in_slice, const uword in_col) const;
-
- inline bool check_overlap(const subview_cube& x) const;
- inline bool check_overlap(const Mat<eT>& x) const;
-
-
- class const_iterator;
-
- class iterator
- {
- public:
-
- inline iterator();
- inline iterator(const iterator& X);
- inline iterator(subview_cube<eT>& in_sv, const uword in_row, const uword in_col, const uword in_slice);
-
- inline arma_warn_unused eT& operator*();
-
- inline iterator& operator++();
- inline arma_warn_unused iterator operator++(int);
-
- inline arma_warn_unused bool operator==(const iterator& rhs) const;
- inline arma_warn_unused bool operator!=(const iterator& rhs) const;
- inline arma_warn_unused bool operator==(const const_iterator& rhs) const;
- inline arma_warn_unused bool operator!=(const const_iterator& rhs) const;
-
- typedef std::forward_iterator_tag iterator_category;
- typedef eT value_type;
- typedef std::ptrdiff_t difference_type; // TODO: not certain on this one
- typedef eT* pointer;
- typedef eT& reference;
-
- arma_aligned Cube<eT>* M;
- arma_aligned eT* current_ptr;
- arma_aligned uword current_row;
- arma_aligned uword current_col;
- arma_aligned uword current_slice;
-
- arma_aligned const uword aux_row1;
- arma_aligned const uword aux_col1;
-
- arma_aligned const uword aux_row2_p1;
- arma_aligned const uword aux_col2_p1;
- };
-
-
- class const_iterator
- {
- public:
-
- inline const_iterator();
- inline const_iterator(const iterator& X);
- inline const_iterator(const const_iterator& X);
- inline const_iterator(const subview_cube<eT>& in_sv, const uword in_row, const uword in_col, const uword in_slice);
-
- inline arma_warn_unused const eT& operator*();
-
- inline const_iterator& operator++();
- inline arma_warn_unused const_iterator operator++(int);
-
- inline arma_warn_unused bool operator==(const iterator& rhs) const;
- inline arma_warn_unused bool operator!=(const iterator& rhs) const;
- inline arma_warn_unused bool operator==(const const_iterator& rhs) const;
- inline arma_warn_unused bool operator!=(const const_iterator& rhs) const;
-
- // So that we satisfy the STL iterator types.
- typedef std::forward_iterator_tag iterator_category;
- typedef eT value_type;
- typedef std::ptrdiff_t difference_type; // TODO: not certain on this one
- typedef const eT* pointer;
- typedef const eT& reference;
-
- arma_aligned const Cube<eT>* M;
- arma_aligned const eT* current_ptr;
- arma_aligned uword current_row;
- arma_aligned uword current_col;
- arma_aligned uword current_slice;
-
- arma_aligned const uword aux_row1;
- arma_aligned const uword aux_col1;
-
- arma_aligned const uword aux_row2_p1;
- arma_aligned const uword aux_col2_p1;
- };
-
-
- inline iterator begin();
- inline const_iterator begin() const;
- inline const_iterator cbegin() const;
-
- inline iterator end();
- inline const_iterator end() const;
- inline const_iterator cend() const;
-
-
- private:
-
- friend class Mat<eT>;
- friend class Cube<eT>;
-
- subview_cube();
- };
- //! @}
|