27#ifndef math_vectorUtils_hpp
28#define math_vectorUtils_hpp
60template <
typename vectorT>
65 typename vectorT::value_type scale =
67 typename vectorT::value_type
offset =
77 for(
int i = 0;
i <
vec.size(); ++
i )
96template <
typename memberT>
99 std::vector<size_t>
indices( values.size() );
101 std::iota( begin(
indices ), end(
indices ),
static_cast<size_t>( 0 ) );
103 std::sort( begin(
indices ), end(
indices ), [&](
size_t a,
size_t b ) {
return values[a] < values[b]; } );
116template <
typename valueT>
123 for(
size_t i = 0;
i <
sz; ++
i )
137template <
typename vectorT>
140 typename vectorT::value_type sum = 0;
142 for(
size_t i = 0;
i <
vec.size(); ++
i )
156template <
typename valueT>
163 for(
size_t i = 0;
i <
sz; ++
i )
179template <
typename vectorT>
182 typename vectorT::value_type mean = 0;
184 for(
size_t i = 0;
i <
vec.size(); ++
i )
199template <
typename vectorT>
204 typename vectorT::value_type mean = 0,
wsum = 0;
206 for(
size_t i = 0;
i <
vec.size(); ++
i )
208 mean += w[
i] *
vec[
i];
226template <
typename vectorT>
229 typename vectorT::value_type
med;
231 int n = 0.5 *
vec.size();
233 std::nth_element(
vec.begin(),
vec.begin() + n,
vec.end() );
238 if(
vec.size() % 2 == 0 )
240 med = 0.5 * (
med + *std::max_element(
vec.begin(),
vec.begin() + n ) );
255template <
typename vectorT>
256typename vectorT::value_type
261 typename vectorT::value_type
med;
270 work->resize(
vec.size() );
272 for(
int i = 0;
i <
vec.size(); ++
i )
274 ( *work )[
i] =
vec[
i];
292template <
typename valueT>
301 for(
size_t i = 0;
i <
sz; ++
i )
316template <
typename vectorT>
317typename vectorT::value_type
319 const typename vectorT::value_type &mean
322 typename vectorT::value_type
var;
325 for(
size_t i = 0;
i <
vec.size(); ++
i )
330 var /= (
vec.size() - 1 );
342template <
typename valueT>
361template <
typename vectorT>
364 typename vectorT::value_type mean;
380template <
typename vectorT,
typename sigmaT>
398 if( weights->size() ==
vec.size() )
404 Vsig = sigma * sigma;
417 for(
int i = 0;
i <
vec.size(); ++
i )
430 for(
size_t i = 0;
i < work.size(); ++
i )
435 work.erase( work.begin() +
i );
466template <
typename vectorT>
467typename vectorT::value_type
469 typename vectorT::value_type sigma
480template <
typename vectorT>
481typename vectorT::value_type
484 typename vectorT::value_type sigma,
496template <
typename vectorT>
497typename vectorT::value_type
500 typename vectorT::value_type sigma
509template <
typename valueT,
typename constT>
515 for(
size_t n = 0; n <
sz; ++n )
520template <
typename vecT,
typename constT>
529template <
typename valueT>
539template <
typename vecT>
546template <
typename vecT>
554template <
typename realT>
566 int j =
i - 0.5 * win;
588template <
typename realT>
590 std::vector<realT> &
smVec,
591 std::vector<realT> &
vec,
607template <
typename realT>
609 std::vector<realT> &
smVec,
610 std::vector<realT> &
vec,
611 std::vector<int> &
wins,
619 for(
int i = 0;
i <
vec.size(); ++
i )
641 for(
int i = 0;
i <
vec.size(); ++
i )
647 for(
int i = 0;
i <
vec.size(); ++
i )
657template <
typename realT>
659 std::vector<realT> &
vec,
665 std::vector<realT>
tvec;
667 for(
int i = 0;
i <
vec.size(); ++
i )
669 int j =
i - 0.5 * win;
674 while(
j <=
i + 0.5 * win &&
j <
vec.size() )
687template <
typename realT>
689 std::vector<realT> &
vec,
695 for(
int i = 0;
i <
vec.size(); ++
i )
697 int j =
i - 0.5 * win;
703 while(
j <=
i + 0.5 * win &&
j <
vec.size() )
721template <
typename vectorT>
732 binv.resize( v.size() / n );
734 for(
size_t i = 0;
i <
binv.size(); ++
i )
739 for(
j = 0;
j < n; ++
j )
741 if(
i * n +
j >= v.size() )
764template <
typename vectorT,
typename binVectorT>
775 for(
size_t i = 0;
i <
binSzs.size(); ++
i )
780 for(
size_t j = 0;
j <
binv.size(); ++
j )
794template <
typename realT,
typename fwhmT,
typename winhwT>
796 const std::vector<realT> &
dataIn,
797 const std::vector<realT> &scale,
803 if(
dataIn.size() != scale.size() )
811 realT sigma = func::fwhm2sigma<realT>( _fwhm );
825 G = func::gaussian<realT>( scale[
j], 0.0, 1.0, scale[
i], sigma );
844template <
typename floatT>
846 std::vector<floatT> &sum,
847 std::vector<floatT> &
vec
852 std::sort(
svec.begin(),
svec.end() );
854 sum.resize(
svec.size() );
858 for(
int i = 1;
i <
svec.size(); ++
i )
873template <
typename floatT>
875 std::vector<floatT> &
svec,
876 std::vector<floatT> &sum,
877 std::vector<floatT> &
vec
882 std::sort(
svec.begin(),
svec.end(), std::greater<floatT>() );
884 sum.resize(
svec.size() );
888 for(
int i = 1;
i <
svec.size(); ++
i )
Declarations for utilities related to the Gaussian function.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
std::vector< size_t > vectorSortOrder(std::vector< memberT > const &values)
Return the indices of the vector in sorted order, without altering the vector itself.
void vectorMeanSub(valueT *vec, size_t sz)
Subtract the mean from a vector.
void vectorScale(vectorT &vec, size_t N=0, typename vectorT::value_type scale=0, typename vectorT::value_type offset=0)
Fill in a vector with a regularly spaced scale.
int vectorRebin(vectorT &binv, const vectorT &v, unsigned n, bool binMean=false)
Re-bin a vector by summing (or averaging) in bins of size n points.
vectorT::value_type vectorMedianInPlace(vectorT &vec)
Calculate median of a vector in-place, altering the vector.
vectorT::value_type vectorSigmaMean(const vectorT &vec, const vectorT *weights, const sigmaT &sigma, int &maxPasses)
Calculate the sigma-clipped mean of a vector.
int vectorBinMeans(std::vector< vectorT > &means, binVectorT &binSzs, const vectorT &v)
Calculate and accumulate the means of a timeseries in bins of various sizes.
int vectorGaussConvolve(std::vector< realT > &dataOut, const std::vector< realT > &dataIn, const std::vector< realT > &scale, const fwhmT fwhm, const winhwT winhw)
Convolve (smooth) a vector with a Gaussian.
valueT vectorMean(const valueT *vec, size_t sz)
Calculate the mean of a vector.
void vectorSub(valueT *vec, size_t sz, const constT &c)
Subtract a constant value from a vector.
valueT vectorVariance(const valueT *vec, size_t sz, valueT mean)
Calculate the variance of a vector relative to a supplied mean value.
int vectorCumHistReverse(std::vector< floatT > &svec, std::vector< floatT > &sum, std::vector< floatT > &vec)
Calculate a reverse cumulative histogram of a vector.
void vectorMedianSub(vecT &vec)
Subtract the median from a vector.
vectorT::value_type vectorMedian(const vectorT &vec, vectorT *work=0)
Calculate median of a vector, leaving the vector unaltered.
int vectorCumHist(std::vector< floatT > &svec, std::vector< floatT > &sum, std::vector< floatT > &vec)
Calculate a cumulative histogram of a vector.
int vectorSmoothMean(realT *smVec, realT *vec, size_t vecSize, int win)
Smooth a vector using the mean in a window specified by its full-width.
int vectorSmoothMedian(std::vector< realT > &smVec, std::vector< realT > &vec, int win)
Smooth a vector using the median in a window specified by its full-width.
int vectorSmoothMax(std::vector< realT > &smVec, std::vector< realT > &vec, int win)
Smooth a vector using the max in a window specified by its full-width.
valueT vectorSum(const valueT *vec, size_t sz)
Calculate the sum of a vector.