//===========================================================================
/*!
*
*
* \brief some functions for vector valued statistics like mean, variance and covariance
*
*
*
* \author O.Krause, C. Igel
* \date 2010-2013
*
*
* \par Copyright 1995-2017 Shark Development Team
*
*
* This file is part of Shark.
*
*
* Shark is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Shark 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Shark. If not, see .
*
*/
//===========================================================================
#ifndef SHARK_DATA_STATISTICS_H
#define SHARK_DATA_STATISTICS_H
#include
/**
* \ingroup shark_globals
*
* @{
*/
namespace shark{
//! Calculates the mean and variance values of the input data
template
void meanvar
(
Data const& data,
blas::vector_container& mean,
blas::vector_container& variance
);
//! Calculates the mean, variance and covariance values of the input data
template
void meanvar
(
Data const& data,
blas::vector_container& mean,
blas::matrix_container& variance
);
//! Calculates the mean vector of the input vectors.
template
VectorType mean(Data const& data);
template
VectorType mean(UnlabeledData const& data){
return mean(static_cast const&>(data));
}
//! Calculates the variance vector of the input vectors
template
VectorType variance(Data const& data);
//! Calculates the covariance matrix of the data vectors
template
blas::matrix covariance(Data const& data);
}
/** @}*/
#include "Impl/Statistics.inl"
#endif