Stan Math Library  2.6.3
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Macros
sort_asc.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_FWD_MAT_FUN_SORT_ASC_HPP
2 #define STAN_MATH_FWD_MAT_FUN_SORT_ASC_HPP
3 
4 #include <stan/math/fwd/core.hpp>
6 #include <algorithm> // std::sort
7 #include <functional> // std::greater
8 #include <vector>
9 
10 namespace stan {
11 
12  namespace math {
13 
14  template <typename T>
15  inline
16  std::vector< fvar<T> >
17  sort_asc(std::vector< fvar<T> > xs) {
18  std::sort(xs.begin(), xs.end());
19  return xs;
20  }
21 
22  template <typename T, int R, int C>
23  inline
24  typename Eigen::Matrix<fvar<T>, R, C>
25  sort_asc(Eigen::Matrix<fvar<T>, R, C> xs) {
26  std::sort(xs.data(), xs.data()+xs.size());
27  return xs;
28  }
29 
30  }
31 }
32 #endif
std::vector< fvar< T > > sort_asc(std::vector< fvar< T > > xs)
Definition: sort_asc.hpp:17

     [ Stan Home Page ] © 2011–2015, Stan Development Team.