/*! \file sqrsum.h * \brief evaluate square of sum of all samples (prototypes) * * ---------------------------------------------------------------------------- * * $Id: sqrsum.h,v 1.1 2007-06-13 15:24:09 tforb Exp $ * \author Thomas Forbriger * \date 13/06/2007 * * evaluate square of sum of all samples (prototypes) * * Copyright (c) 2007 by Thomas Forbriger (BFO Schiltach) * * ---- * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * ---- * * REVISIONS and CHANGES * - 13/06/2007 V1.0 Thomas Forbriger * * ============================================================================ */ // include guard #ifndef AFF_SQRSUM_H_VERSION #define AFF_SQRSUM_H_VERSION \ "AFF_SQRSUM_H V1.0 " #define AFF_SQRSUM_H_CVSID \ "$Id: sqrsum.h,v 1.1 2007-06-13 15:24:09 tforb Exp $" #include namespace aff { namespace func { namespace util { /*! utility class to extract the sum of the square of all samples from * the container * * This class should be used together with the * aff::func::util::collect() function template. * * \param C any container class like aff::Array */ template class Extractsqrsum { typedef typename C::Tcoc Tcont; typedef typename C::Tvalue Tvalue; public: typedef Tvalue Tretval; //! initialize member data Extractsqrsum(const Tcont& c): Msum(0), Mn(0) { } //! collect another value void operator() (const Tvalue& v) { Msum+=(v*v); ++Mn; } //! return result of operation Tretval result() const { return(Msum); } private: Tvalue Msum; int Mn; }; // class Extractsqrsum } // namespace util /*----------------------------------------------------------------------*/ /*! Function template to extract the sum of the square of all samples * stored in a container * * \param C any container class like aff::Array * (this value is deduced by the compiler) * \param c any container of numerical values * \return sum of the square of all samples in the container * * \sa aff::func::util::collect, aff::func::util::Extractsqrsum */ template typename C::Tvalue sqrsum(const C& c) { return(aff::func::util::collect(c)); } // sqrsum() } // namespace func } // namespace aff #endif // AFF_SQRSUM_H_VERSION (includeguard) /* ----- END OF sqrsum.h ----- */