Page MenuHomec4science

SequenceModelComputer.hpp
No OneTemporary

File Metadata

Created
Fri, May 31, 16:32

SequenceModelComputer.hpp

#ifndef SEQUENCEMODELCOMPUTER_HPP
#define SEQUENCEMODELCOMPUTER_HPP
#include <ModelComputer.hpp>
#include <matrices.hpp>
class SequenceModelComputer : public ModelComputer
{
public:
/*!
* \brief Constructs an object to retrieve
* the sequence model given the data and their
* classification results.
* \param data the data.
* \param post_prob the data class assignment
* probabilities.
*/
SequenceModelComputer(const matrix2d_i& data,
const matrix4d_d& post_prob) ;
/*!
* \brief Destructor.
*/
virtual ~SequenceModelComputer() override ;
} ;
#endif // SEQUENCEMODELCOMPUTER_HPP

Event Timeline