name: StatisticalModel

synopsis:

g++ [flags ...] file ... -l /isip/tools/lib/$ISIP_BINARY/lib_stat.a

#include <StatisticalModel.h>

StatisticalModel(TYPE type = DEF_TYPE);
StatisticalModel(const StatisticalModel& arg);
boolean eq(const StatisticalModel& arg) const;
boolean assign(const StatisticalModel& arg);
boolean setMode(MODE mode);
MODE getMode() const;
quick start:

StatisticalModel model;
model.setMode(GAUSSAN_MODEL);
description:

The StatisticalModel class is used to evaluate the likelihood of an input vector with respect to a statistical model. This class provides a virtual interface to any class that implements the StatisticalModelBase interface contract.

dependencies:

public constants:

error codes:

protected data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: