123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601 |
- // 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_misc
- //! @{
- template<typename out_type>
- arma_warn_unused
- inline
- typename
- enable_if2
- <
- is_Mat<out_type>::value,
- out_type
- >::result
- linspace
- (
- const typename out_type::pod_type start,
- const typename out_type::pod_type end,
- const uword num = 100u
- )
- {
- arma_extra_debug_sigprint();
-
- typedef typename out_type::elem_type eT;
- typedef typename out_type::pod_type T;
-
- out_type x;
-
- if(num == 1)
- {
- x.set_size(1);
-
- x[0] = eT(end);
- }
- else
- if(num >= 2)
- {
- x.set_size(num);
-
- eT* x_mem = x.memptr();
-
- const uword num_m1 = num - 1;
-
- if(is_non_integral<T>::value == true)
- {
- const T delta = (end-start)/T(num_m1);
-
- for(uword i=0; i<num_m1; ++i)
- {
- x_mem[i] = eT(start + i*delta);
- }
-
- x_mem[num_m1] = eT(end);
- }
- else
- {
- const double delta = (end >= start) ? double(end-start)/double(num_m1) : -double(start-end)/double(num_m1);
-
- for(uword i=0; i<num_m1; ++i)
- {
- x_mem[i] = eT(double(start) + i*delta);
- }
-
- x_mem[num_m1] = eT(end);
- }
- }
-
- return x;
- }
- arma_warn_unused
- inline
- vec
- linspace(const double start, const double end, const uword num = 100u)
- {
- arma_extra_debug_sigprint();
- return linspace<vec>(start, end, num);
- }
- template<typename out_type>
- arma_warn_unused
- inline
- typename
- enable_if2
- <
- (is_Mat<out_type>::value && is_real<typename out_type::pod_type>::value),
- out_type
- >::result
- logspace
- (
- const typename out_type::pod_type A,
- const typename out_type::pod_type B,
- const uword N = 50u
- )
- {
- arma_extra_debug_sigprint();
-
- typedef typename out_type::elem_type eT;
- typedef typename out_type::pod_type T;
-
- out_type x = linspace<out_type>(A,B,N);
-
- const uword n_elem = x.n_elem;
-
- eT* x_mem = x.memptr();
-
- for(uword i=0; i < n_elem; ++i)
- {
- x_mem[i] = std::pow(T(10), x_mem[i]);
- }
-
- return x;
- }
- arma_warn_unused
- inline
- vec
- logspace(const double A, const double B, const uword N = 50u)
- {
- arma_extra_debug_sigprint();
- return logspace<vec>(A, B, N);
- }
- //
- // log_exp_add
- template<typename eT>
- arma_warn_unused
- inline
- typename arma_real_only<eT>::result
- log_add_exp(eT log_a, eT log_b)
- {
- if(log_a < log_b)
- {
- std::swap(log_a, log_b);
- }
-
- const eT negdelta = log_b - log_a;
-
- if( (negdelta < Datum<eT>::log_min) || (arma_isfinite(negdelta) == false) )
- {
- return log_a;
- }
- else
- {
- return (log_a + arma_log1p(std::exp(negdelta)));
- }
- }
- // for compatibility with earlier versions
- template<typename eT>
- arma_warn_unused
- inline
- typename arma_real_only<eT>::result
- log_add(eT log_a, eT log_b)
- {
- return log_add_exp(log_a, log_b);
- }
-
- //! kept for compatibility with old user code
- template<typename eT>
- arma_warn_unused
- arma_inline
- bool
- is_finite(const eT x, const typename arma_scalar_only<eT>::result* junk = 0)
- {
- arma_ignore(junk);
-
- return arma_isfinite(x);
- }
- //! kept for compatibility with old user code
- template<typename T1>
- arma_warn_unused
- inline
- bool
- is_finite(const Base<typename T1::elem_type,T1>& X)
- {
- arma_extra_debug_sigprint();
-
- return X.is_finite();
- }
- //! kept for compatibility with old user code
- template<typename T1>
- arma_warn_unused
- inline
- bool
- is_finite(const SpBase<typename T1::elem_type,T1>& X)
- {
- arma_extra_debug_sigprint();
-
- return X.is_finite();
- }
- //! kept for compatibility with old user code
- template<typename T1>
- arma_warn_unused
- inline
- bool
- is_finite(const BaseCube<typename T1::elem_type,T1>& X)
- {
- arma_extra_debug_sigprint();
-
- return X.is_finite();
- }
- //! NOTE: don't use this function: it will be removed
- template<typename T1>
- arma_deprecated
- inline
- const T1&
- sympd(const Base<typename T1::elem_type,T1>& X)
- {
- arma_extra_debug_sigprint();
-
- arma_debug_warn("sympd() is deprecated and will be removed; change inv(sympd(X)) to inv_sympd(X)");
-
- return X.get_ref();
- }
- template<typename eT>
- inline
- void
- swap(Mat<eT>& A, Mat<eT>& B)
- {
- arma_extra_debug_sigprint();
-
- A.swap(B);
- }
- template<typename eT>
- inline
- void
- swap(Cube<eT>& A, Cube<eT>& B)
- {
- arma_extra_debug_sigprint();
-
- A.swap(B);
- }
- arma_warn_unused
- inline
- uvec
- ind2sub(const SizeMat& s, const uword i)
- {
- arma_extra_debug_sigprint();
-
- const uword s_n_rows = s.n_rows;
-
- arma_debug_check( (i >= (s_n_rows * s.n_cols) ), "ind2sub(): index out of range" );
-
- const uword row = i % s_n_rows;
- const uword col = i / s_n_rows;
-
- uvec out(2);
-
- uword* out_mem = out.memptr();
-
- out_mem[0] = row;
- out_mem[1] = col;
-
- return out;
- }
- template<typename T1>
- arma_warn_unused
- inline
- typename enable_if2< (is_arma_type<T1>::value && is_same_type<uword,typename T1::elem_type>::yes), umat >::result
- ind2sub(const SizeMat& s, const T1& indices)
- {
- arma_extra_debug_sigprint();
-
- const uword s_n_rows = s.n_rows;
- const uword s_n_elem = s_n_rows * s.n_cols;
-
- const Proxy<T1> P(indices);
-
- const uword P_n_rows = P.get_n_rows();
- const uword P_n_cols = P.get_n_cols();
- const uword P_n_elem = P.get_n_elem();
-
- const bool P_is_empty = (P_n_elem == 0);
- const bool P_is_vec = ((P_n_rows == 1) || (P_n_cols == 1));
-
- arma_debug_check( ((P_is_empty == false) && (P_is_vec == false)), "ind2sub(): parameter 'indices' must be a vector" );
-
- umat out(2,P_n_elem);
-
- if(Proxy<T1>::use_at == false)
- {
- typename Proxy<T1>::ea_type Pea = P.get_ea();
-
- for(uword count=0; count < P_n_elem; ++count)
- {
- const uword i = Pea[count];
-
- arma_debug_check( (i >= s_n_elem), "ind2sub(): index out of range" );
-
- const uword row = i % s_n_rows;
- const uword col = i / s_n_rows;
-
- uword* out_colptr = out.colptr(count);
-
- out_colptr[0] = row;
- out_colptr[1] = col;
- }
- }
- else
- {
- if(P_n_rows == 1)
- {
- for(uword count=0; count < P_n_cols; ++count)
- {
- const uword i = P.at(0,count);
-
- arma_debug_check( (i >= s_n_elem), "ind2sub(): index out of range" );
-
- const uword row = i % s_n_rows;
- const uword col = i / s_n_rows;
-
- uword* out_colptr = out.colptr(count);
-
- out_colptr[0] = row;
- out_colptr[1] = col;
- }
- }
- else
- if(P_n_cols == 1)
- {
- for(uword count=0; count < P_n_rows; ++count)
- {
- const uword i = P.at(count,0);
-
- arma_debug_check( (i >= s_n_elem), "ind2sub(): index out of range" );
-
- const uword row = i % s_n_rows;
- const uword col = i / s_n_rows;
-
- uword* out_colptr = out.colptr(count);
-
- out_colptr[0] = row;
- out_colptr[1] = col;
- }
- }
- }
-
- return out;
- }
- arma_warn_unused
- inline
- uvec
- ind2sub(const SizeCube& s, const uword i)
- {
- arma_extra_debug_sigprint();
-
- const uword s_n_rows = s.n_rows;
- const uword s_n_elem_slice = s_n_rows * s.n_cols;
-
- arma_debug_check( (i >= (s_n_elem_slice * s.n_slices) ), "ind2sub(): index out of range" );
-
- const uword slice = i / s_n_elem_slice;
- const uword j = i - (slice * s_n_elem_slice);
- const uword row = j % s_n_rows;
- const uword col = j / s_n_rows;
-
- uvec out(3);
-
- uword* out_mem = out.memptr();
-
- out_mem[0] = row;
- out_mem[1] = col;
- out_mem[2] = slice;
-
- return out;
- }
- template<typename T1>
- arma_warn_unused
- inline
- typename enable_if2< (is_arma_type<T1>::value && is_same_type<uword,typename T1::elem_type>::yes), umat >::result
- ind2sub(const SizeCube& s, const T1& indices)
- {
- arma_extra_debug_sigprint();
-
- const uword s_n_rows = s.n_rows;
- const uword s_n_elem_slice = s_n_rows * s.n_cols;
- const uword s_n_elem = s.n_slices * s_n_elem_slice;
-
- const quasi_unwrap<T1> U(indices);
-
- arma_debug_check( ((U.M.is_empty() == false) && (U.M.is_vec() == false)), "ind2sub(): parameter 'indices' must be a vector" );
-
- const uword U_n_elem = U.M.n_elem;
- const uword* U_mem = U.M.memptr();
-
- umat out(3,U_n_elem);
-
- for(uword count=0; count < U_n_elem; ++count)
- {
- const uword i = U_mem[count];
-
- arma_debug_check( (i >= s_n_elem), "ind2sub(): index out of range" );
-
- const uword slice = i / s_n_elem_slice;
- const uword j = i - (slice * s_n_elem_slice);
- const uword row = j % s_n_rows;
- const uword col = j / s_n_rows;
-
- uword* out_colptr = out.colptr(count);
-
- out_colptr[0] = row;
- out_colptr[1] = col;
- out_colptr[2] = slice;
- }
-
- return out;
- }
- arma_warn_unused
- arma_inline
- uword
- sub2ind(const SizeMat& s, const uword row, const uword col)
- {
- arma_extra_debug_sigprint();
-
- const uword s_n_rows = s.n_rows;
-
- arma_debug_check( ((row >= s_n_rows) || (col >= s.n_cols)), "sub2ind(): subscript out of range" );
-
- return uword(row + col*s_n_rows);
- }
- template<typename T1>
- arma_warn_unused
- inline
- uvec
- sub2ind(const SizeMat& s, const Base<uword,T1>& subscripts)
- {
- arma_extra_debug_sigprint();
-
- const uword s_n_rows = s.n_rows;
- const uword s_n_cols = s.n_cols;
-
- const quasi_unwrap<T1> U(subscripts.get_ref());
-
- arma_debug_check( (U.M.n_rows != 2), "sub2ind(): matrix of subscripts must have 2 rows" );
-
- const uword U_M_n_cols = U.M.n_cols;
-
- uvec out(U_M_n_cols);
-
- uword* out_mem = out.memptr();
- const uword* U_M_mem = U.M.memptr();
-
- for(uword count=0; count < U_M_n_cols; ++count)
- {
- const uword row = U_M_mem[0];
- const uword col = U_M_mem[1];
-
- U_M_mem += 2; // next column
-
- arma_debug_check( ((row >= s_n_rows) || (col >= s_n_cols)), "sub2ind(): subscript out of range" );
-
- out_mem[count] = uword(row + col*s_n_rows);
- }
-
- return out;
- }
- arma_warn_unused
- arma_inline
- uword
- sub2ind(const SizeCube& s, const uword row, const uword col, const uword slice)
- {
- arma_extra_debug_sigprint();
-
- const uword s_n_rows = s.n_rows;
- const uword s_n_cols = s.n_cols;
-
- arma_debug_check( ((row >= s_n_rows) || (col >= s_n_cols) || (slice >= s.n_slices)), "sub2ind(): subscript out of range" );
-
- return uword( (slice * s_n_rows * s_n_cols) + (col * s_n_rows) + row );
- }
- template<typename T1>
- arma_warn_unused
- inline
- uvec
- sub2ind(const SizeCube& s, const Base<uword,T1>& subscripts)
- {
- arma_extra_debug_sigprint();
-
- const uword s_n_rows = s.n_rows;
- const uword s_n_cols = s.n_cols;
- const uword s_n_slices = s.n_slices;
-
- const quasi_unwrap<T1> U(subscripts.get_ref());
-
- arma_debug_check( (U.M.n_rows != 3), "sub2ind(): matrix of subscripts must have 3 rows" );
-
- const uword U_M_n_cols = U.M.n_cols;
-
- uvec out(U_M_n_cols);
-
- uword* out_mem = out.memptr();
- const uword* U_M_mem = U.M.memptr();
-
- for(uword count=0; count < U_M_n_cols; ++count)
- {
- const uword row = U_M_mem[0];
- const uword col = U_M_mem[1];
- const uword slice = U_M_mem[2];
-
- U_M_mem += 3; // next column
-
- arma_debug_check( ((row >= s_n_rows) || (col >= s_n_cols) || (slice >= s_n_slices)), "sub2ind(): subscript out of range" );
-
- out_mem[count] = uword( (slice * s_n_rows * s_n_cols) + (col * s_n_rows) + row );
- }
-
- return out;
- }
- template<typename T1, typename T2>
- arma_inline
- typename
- enable_if2
- <
- (is_arma_type<T1>::value && is_same_type<typename T1::elem_type, typename T2::elem_type>::value),
- const Glue<T1, T2, glue_affmul>
- >::result
- affmul(const T1& A, const T2& B)
- {
- arma_extra_debug_sigprint();
-
- return Glue<T1, T2, glue_affmul>(A,B);
- }
- //! @}
|