123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- // 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 op_clamp
- //! @{
- template<typename T1>
- inline
- void
- op_clamp::apply(Mat<typename T1::elem_type>& out, const mtOp<typename T1::elem_type, T1, op_clamp>& in)
- {
- arma_extra_debug_sigprint();
-
- const Proxy<T1> P(in.m);
-
- if(is_Mat<typename Proxy<T1>::stored_type>::value || P.is_alias(out))
- {
- const unwrap<typename Proxy<T1>::stored_type> U(P.Q);
-
- op_clamp::apply_direct(out, U.M, in.aux, in.aux_out_eT);
- }
- else
- {
- op_clamp::apply_proxy_noalias(out, P, in.aux, in.aux_out_eT);
- }
- }
- template<typename T1>
- inline
- void
- op_clamp::apply_proxy_noalias(Mat<typename T1::elem_type>& out, const Proxy<T1>& P, const typename T1::elem_type min_val, const typename T1::elem_type max_val)
- {
- arma_extra_debug_sigprint();
-
- typedef typename T1::elem_type eT;
-
- const uword n_rows = P.get_n_rows();
- const uword n_cols = P.get_n_cols();
-
- out.set_size(n_rows, n_cols);
-
- eT* out_mem = out.memptr();
-
- if(Proxy<T1>::use_at == false)
- {
- const uword N = P.get_n_elem();
-
- typename Proxy<T1>::ea_type A = P.get_ea();
-
- uword j;
- for(j=1; j<N; j+=2)
- {
- eT val_i = A[j-1];
- eT val_j = A[j ];
-
- val_i = (val_i < min_val) ? min_val : ((val_i > max_val) ? max_val : val_i);
- val_j = (val_j < min_val) ? min_val : ((val_j > max_val) ? max_val : val_j);
-
- (*out_mem) = val_i; out_mem++;
- (*out_mem) = val_j; out_mem++;
- }
-
- const uword i = j-1;
-
- if(i < N)
- {
- eT val_i = A[i];
-
- val_i = (val_i < min_val) ? min_val : ((val_i > max_val) ? max_val : val_i);
-
- (*out_mem) = val_i;
- }
- }
- else
- {
- for(uword col=0; col<n_cols; ++col)
- for(uword row=0; row<n_rows; ++row)
- {
- eT val = P.at(row,col);
-
- val = (val < min_val) ? min_val : ((val > max_val) ? max_val : val);
-
- (*out_mem) = val; out_mem++;
- }
- }
- }
- template<typename eT>
- inline
- void
- op_clamp::apply_direct(Mat<eT>& out, const Mat<eT>& X, const eT min_val, const eT max_val)
- {
- arma_extra_debug_sigprint();
-
- if(&out != &X)
- {
- const Proxy< Mat<eT> > P(X);
-
- op_clamp::apply_proxy_noalias(out, P, min_val, max_val);
- }
- else
- {
- arma_extra_debug_print("inplace operation");
-
- const uword N = out.n_elem;
-
- eT* out_mem = out.memptr();
-
- for(uword i=0; i<N; ++i)
- {
- eT& out_val = out_mem[i];
-
- out_val = (out_val < min_val) ? min_val : ( (out_val > max_val) ? max_val : out_val );
- }
- }
- }
- //
- template<typename T1>
- inline
- void
- op_clamp::apply(Cube<typename T1::elem_type>& out, const mtOpCube<typename T1::elem_type, T1, op_clamp>& in)
- {
- arma_extra_debug_sigprint();
-
- const ProxyCube<T1> P(in.m);
-
- if((is_Cube<typename ProxyCube<T1>::stored_type>::value) || P.is_alias(out))
- {
- const unwrap_cube<typename ProxyCube<T1>::stored_type> U(P.Q);
-
- op_clamp::apply_direct(out, U.M, in.aux, in.aux_out_eT);
- }
- else
- {
- op_clamp::apply_proxy_noalias(out, P, in.aux, in.aux_out_eT);
- }
- }
- template<typename T1>
- inline
- void
- op_clamp::apply_proxy_noalias(Cube<typename T1::elem_type>& out, const ProxyCube<T1>& P, const typename T1::elem_type min_val, const typename T1::elem_type max_val)
- {
- arma_extra_debug_sigprint();
-
- typedef typename T1::elem_type eT;
-
- const uword n_rows = P.get_n_rows();
- const uword n_cols = P.get_n_cols();
- const uword n_slices = P.get_n_slices();
-
- out.set_size(n_rows, n_cols, n_slices);
-
- eT* out_mem = out.memptr();
-
- if(ProxyCube<T1>::use_at == false)
- {
- const uword N = P.get_n_elem();
-
- typename ProxyCube<T1>::ea_type A = P.get_ea();
-
- uword j;
- for(j=1; j<N; j+=2)
- {
- eT val_i = A[j-1];
- eT val_j = A[j ];
-
- val_i = (val_i < min_val) ? min_val : ((val_i > max_val) ? max_val : val_i);
- val_j = (val_j < min_val) ? min_val : ((val_j > max_val) ? max_val : val_j);
-
- (*out_mem) = val_i; out_mem++;
- (*out_mem) = val_j; out_mem++;
- }
-
- const uword i = j-1;
-
- if(i < N)
- {
- eT val_i = A[i];
-
- val_i = (val_i < min_val) ? min_val : ((val_i > max_val) ? max_val : val_i);
-
- (*out_mem) = val_i;
- }
- }
- else
- {
- for(uword k=0; k < n_slices; ++k)
- for(uword j=0; j < n_cols; ++j)
- for(uword i=0; i < n_rows; ++i)
- {
- eT val = P.at(i,j,k);
-
- val = (val < min_val) ? min_val : ((val > max_val) ? max_val : val);
-
- (*out_mem) = val; out_mem++;
- }
- }
- }
- template<typename eT>
- inline
- void
- op_clamp::apply_direct(Cube<eT>& out, const Cube<eT>& X, const eT min_val, const eT max_val)
- {
- arma_extra_debug_sigprint();
-
- if(&out != &X)
- {
- const ProxyCube< Cube<eT> > P(X);
-
- op_clamp::apply_proxy_noalias(out, P, min_val, max_val);
- }
- else
- {
- arma_extra_debug_print("inplace operation");
-
- const uword N = out.n_elem;
-
- eT* out_mem = out.memptr();
-
- for(uword i=0; i<N; ++i)
- {
- eT& out_val = out_mem[i];
-
- out_val = (out_val < min_val) ? min_val : ( (out_val > max_val) ? max_val : out_val );
- }
- }
- }
- //! @}
|