This repository has been archived on 2026-03-28. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
eodev/src/doNormal.h
Caner Candan 22602154fc * cholesky
2010-08-03 18:54:41 +02:00

18 lines
422 B
C++

#ifndef _doNormal_h
#define _doNormal_h
#include "doDistrib.h"
#include "doNormalParams.h"
template < typename EOT >
class doNormal : public doDistrib< EOT >, public doNormalParams< EOT >
{
public:
typedef typename EOT::AtomType AtomType;
doNormal( const EOT& mean, const ublas::symmetric_matrix< AtomType, ublas::lower >& varcovar )
: doNormalParams< EOT >( mean, varcovar )
{}
};
#endif // !_doNormal_h