an intermediate commit to keep updates
This commit is contained in:
parent
1070ec8a32
commit
963d59e706
21 changed files with 649 additions and 556 deletions
24
src/doStatNormalMulti.h
Normal file
24
src/doStatNormalMulti.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#ifndef _doStatNormalMulti_h
|
||||
#define _doStatNormalMulti_h
|
||||
|
||||
#include <boost/numeric/ublas/io.hpp>
|
||||
|
||||
#include "doStat.h"
|
||||
#include "doNormalMulti.h"
|
||||
#include "doDistrib.h"
|
||||
|
||||
template < typename EOT >
|
||||
class doStatNormalMulti : public doStat< doNormalMulti< EOT > >
|
||||
{
|
||||
public:
|
||||
doStatNormalMulti( doNormalMulti< EOT >& distrib )
|
||||
: doStat< doNormalMulti< EOT > >( distrib )
|
||||
{}
|
||||
|
||||
virtual void printOn(std::ostream& os) const
|
||||
{
|
||||
os << this->distrib().mean() << this->distrib().varcovar();
|
||||
}
|
||||
};
|
||||
|
||||
#endif // !_doStatNormalMulti_h
|
||||
Reference in a new issue