123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382 |
- // 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 fn_find
- //! @{
- template<typename T1>
- arma_warn_unused
- inline
- typename
- enable_if2
- <
- is_arma_type<T1>::value,
- const mtOp<uword, T1, op_find_simple>
- >::result
- find(const T1& X)
- {
- arma_extra_debug_sigprint();
-
- return mtOp<uword, T1, op_find_simple>(X);
- }
- template<typename T1>
- arma_warn_unused
- inline
- const mtOp<uword, T1, op_find>
- find(const Base<typename T1::elem_type,T1>& X, const uword k, const char* direction = "first")
- {
- arma_extra_debug_sigprint();
-
- const char sig = (direction != NULL) ? direction[0] : char(0);
-
- arma_debug_check
- (
- ( (sig != 'f') && (sig != 'F') && (sig != 'l') && (sig != 'L') ),
- "find(): direction must be \"first\" or \"last\""
- );
-
- const uword type = ( (sig == 'f') || (sig == 'F') ) ? 0 : 1;
-
- return mtOp<uword, T1, op_find>(X.get_ref(), k, type);
- }
- //
- template<typename T1>
- arma_warn_unused
- inline
- uvec
- find(const BaseCube<typename T1::elem_type,T1>& X)
- {
- arma_extra_debug_sigprint();
-
- typedef typename T1::elem_type eT;
-
- const unwrap_cube<T1> tmp(X.get_ref());
-
- const Mat<eT> R( const_cast< eT* >(tmp.M.memptr()), tmp.M.n_elem, 1, false );
-
- return find(R);
- }
- template<typename T1>
- arma_warn_unused
- inline
- uvec
- find(const BaseCube<typename T1::elem_type,T1>& X, const uword k, const char* direction = "first")
- {
- arma_extra_debug_sigprint();
-
- typedef typename T1::elem_type eT;
-
- const unwrap_cube<T1> tmp(X.get_ref());
-
- const Mat<eT> R( const_cast< eT* >(tmp.M.memptr()), tmp.M.n_elem, 1, false );
-
- return find(R, k, direction);
- }
- template<typename T1, typename op_rel_type>
- arma_warn_unused
- inline
- uvec
- find(const mtOpCube<uword, T1, op_rel_type>& X, const uword k = 0, const char* direction = "first")
- {
- arma_extra_debug_sigprint();
-
- typedef typename T1::elem_type eT;
-
- const unwrap_cube<T1> tmp(X.m);
-
- const Mat<eT> R( const_cast< eT* >(tmp.M.memptr()), tmp.M.n_elem, 1, false );
-
- return find( mtOp<uword, Mat<eT>, op_rel_type>(R, X.aux), k, direction );
- }
- template<typename T1, typename T2, typename glue_rel_type>
- arma_warn_unused
- inline
- uvec
- find(const mtGlueCube<uword, T1, T2, glue_rel_type>& X, const uword k = 0, const char* direction = "first")
- {
- arma_extra_debug_sigprint();
-
- typedef typename T1::elem_type eT1;
- typedef typename T2::elem_type eT2;
-
- const unwrap_cube<T1> tmp1(X.A);
- const unwrap_cube<T2> tmp2(X.B);
-
- arma_debug_assert_same_size( tmp1.M, tmp2.M, "relational operator" );
-
- const Mat<eT1> R1( const_cast< eT1* >(tmp1.M.memptr()), tmp1.M.n_elem, 1, false );
- const Mat<eT2> R2( const_cast< eT2* >(tmp2.M.memptr()), tmp2.M.n_elem, 1, false );
-
- return find( mtGlue<uword, Mat<eT1>, Mat<eT2>, glue_rel_type>(R1, R2), k, direction );
- }
- //
- template<typename T1>
- arma_warn_unused
- inline
- Col<uword>
- find(const SpBase<typename T1::elem_type,T1>& X, const uword k = 0)
- {
- arma_extra_debug_sigprint();
-
- const SpProxy<T1> P(X.get_ref());
-
- const uword n_rows = P.get_n_rows();
- const uword n_nz = P.get_n_nonzero();
-
- Mat<uword> tmp(n_nz,1);
-
- uword* tmp_mem = tmp.memptr();
-
- typename SpProxy<T1>::const_iterator_type it = P.begin();
-
- for(uword i=0; i<n_nz; ++i)
- {
- const uword index = it.row() + it.col()*n_rows;
-
- tmp_mem[i] = index;
-
- ++it;
- }
-
- Col<uword> out;
-
- const uword count = (k == 0) ? uword(n_nz) : uword( (std::min)(n_nz, k) );
-
- out.steal_mem_col(tmp, count);
-
- return out;
- }
- template<typename T1>
- arma_warn_unused
- inline
- Col<uword>
- find(const SpBase<typename T1::elem_type,T1>& X, const uword k, const char* direction)
- {
- arma_extra_debug_sigprint();
-
- arma_check(true, "find(SpBase,k,direction): not implemented yet"); // TODO
-
- Col<uword> out;
-
- return out;
- }
- //
- template<typename T1>
- arma_warn_unused
- inline
- typename
- enable_if2
- <
- is_arma_type<T1>::value,
- const mtOp<uword, T1, op_find_finite>
- >::result
- find_finite(const T1& X)
- {
- arma_extra_debug_sigprint();
-
- return mtOp<uword, T1, op_find_finite>(X);
- }
- template<typename T1>
- arma_warn_unused
- inline
- typename
- enable_if2
- <
- is_arma_type<T1>::value,
- const mtOp<uword, T1, op_find_nonfinite>
- >::result
- find_nonfinite(const T1& X)
- {
- arma_extra_debug_sigprint();
-
- return mtOp<uword, T1, op_find_nonfinite>(X);
- }
- //
- template<typename T1>
- arma_warn_unused
- inline
- uvec
- find_finite(const BaseCube<typename T1::elem_type,T1>& X)
- {
- arma_extra_debug_sigprint();
-
- typedef typename T1::elem_type eT;
-
- const unwrap_cube<T1> tmp(X.get_ref());
-
- const Mat<eT> R( const_cast< eT* >(tmp.M.memptr()), tmp.M.n_elem, 1, false );
-
- return find_finite(R);
- }
- template<typename T1>
- arma_warn_unused
- inline
- uvec
- find_nonfinite(const BaseCube<typename T1::elem_type,T1>& X)
- {
- arma_extra_debug_sigprint();
-
- typedef typename T1::elem_type eT;
-
- const unwrap_cube<T1> tmp(X.get_ref());
-
- const Mat<eT> R( const_cast< eT* >(tmp.M.memptr()), tmp.M.n_elem, 1, false );
-
- return find_nonfinite(R);
- }
- //
- template<typename T1>
- arma_warn_unused
- inline
- Col<uword>
- find_finite(const SpBase<typename T1::elem_type,T1>& X)
- {
- arma_extra_debug_sigprint();
-
- const SpProxy<T1> P(X.get_ref());
-
- const uword n_rows = P.get_n_rows();
- const uword n_nz = P.get_n_nonzero();
-
- Mat<uword> tmp(n_nz,1);
-
- uword* tmp_mem = tmp.memptr();
-
- typename SpProxy<T1>::const_iterator_type it = P.begin();
-
- uword count = 0;
-
- for(uword i=0; i<n_nz; ++i)
- {
- if(arma_isfinite(*it))
- {
- const uword index = it.row() + it.col()*n_rows;
-
- tmp_mem[count] = index;
-
- ++count;
- }
-
- ++it;
- }
-
- Col<uword> out;
-
- if(count > 0) { out.steal_mem_col(tmp, count); }
-
- return out;
- }
- template<typename T1>
- arma_warn_unused
- inline
- Col<uword>
- find_nonfinite(const SpBase<typename T1::elem_type,T1>& X)
- {
- arma_extra_debug_sigprint();
-
- const SpProxy<T1> P(X.get_ref());
-
- const uword n_rows = P.get_n_rows();
- const uword n_nz = P.get_n_nonzero();
-
- Mat<uword> tmp(n_nz,1);
-
- uword* tmp_mem = tmp.memptr();
-
- typename SpProxy<T1>::const_iterator_type it = P.begin();
-
- uword count = 0;
-
- for(uword i=0; i<n_nz; ++i)
- {
- if(arma_isfinite(*it) == false)
- {
- const uword index = it.row() + it.col()*n_rows;
-
- tmp_mem[count] = index;
-
- ++count;
- }
-
- ++it;
- }
-
- Col<uword> out;
-
- if(count > 0) { out.steal_mem_col(tmp, count); }
-
- return out;
- }
- //! @}
|