Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00016
00017
00018
00019 class op_sort
00020 {
00021 public:
00022
00023 template<typename eT>
00024 inline static void copy_row(eT* X, const Mat<eT>& A, const uword row);
00025
00026 template<typename eT>
00027 inline static void copy_row(Mat<eT>& A, const eT* X, const uword row);
00028
00029 template<typename eT>
00030 inline static void direct_sort(eT* X, const uword N, const uword sort_type = 0);
00031
00032 template<typename T1>
00033 inline static void apply(Mat<typename T1::elem_type>& out, const Op<T1,op_sort>& in);
00034 };
00035
00036
00037