User Documentation
RAVL, Recognition And Vision Library
DEVELOP HOME PAGE CLASS LIST CONTENTS
Ravl - Logic - Decision Tree - SampleStateC
 

  PUBLIC
SampleStateC::SampleStateC(void)
SampleStateC::SampleStateC(UIntT)
SampleDiscreteC::Histogram(void) const
SampleDiscreteC::Histogram(const CollectionC &) const
SampleDiscreteC::ListInstancesOfLabels(void) const
SampleDiscreteC::ListInstancesOfLabels(const CollectionC &) const
SampleC::SubSample(const CollectionC &)
SampleC::ExtractEntry(int)
SampleC::Append(const DataT &)
SampleC::operator +=(const DataT &)
SampleC::Size(void) const
SampleC::PickElement(UIntT)
SampleC::Nth(UIntT)
SampleC::Nth(UIntT) const
SampleC::Pick(void)
SampleC::operator [](IndexC)
SampleC::operator [](IndexC) const
SampleC::DArray(void)
SampleC::DArray(void) const
SampleC::First(void)
SampleC::First(void) const
SampleC::Last(void)
SampleC::Last(void) const
SampleC::IsEmpty(void) const

   SampleStateC   
 
Set of example states.
 
include "Ravl/Logic/SampleState.hh"
User Level:Normal
Library:RavlLogic
In Scope:RavlLogicN

Parent Classes: Methods:
SampleStateC()
Default constructor.

SampleStateC(UIntT estSize)
Constructor.

#include "Ravl/PatternRec/SampleDiscrete.hh"
HistogramC<StateC> Histogram() const
Compute an occurrence histogram for sample.

HistogramC<StateC> Histogram(const CollectionC<UIntT> & index) const
Compute an occurrence histogram of given elements.

RCHashC<StateC,CollectionC<UIntT>> ListInstancesOfLabels() const
List all the instances (by sample no) of each Label in the sample.

RCHashC<StateC,CollectionC<UIntT>> ListInstancesOfLabels(const CollectionC<UIntT> & index) const
List all the instances (by sample no) of each Label in the sample.
If index is set, only search the sample no's given in it.

#include "Ravl/PatternRec/Sample.hh"
SampleC<StateC> SubSample(const CollectionC<UIntT> & x)
Take a subsample of the given indexes in x.

StateC ExtractEntry(int ind)
Extract an entry from sample.

UIntT Append(const StateC & dat)
Insert a single sample into sample

UIntT operator +=(const StateC & dat)
Indentical to Append().

SizeT Size() const
Return the number of valid samples in the collection

StateC PickElement(UIntT i)
Pick a item i from the collection
Note: The order of the collection is NOT preserved. This minimizes the distruption to the underlying representation by removing an element from the end of the array and placing it in the hole left by removing 'i'.

StateC & Nth(UIntT i)
Access nth element in sample.

const StateC & Nth(UIntT i) const
Access nth element in sample.

StateC Pick()
Pick a random item from the collection
Note: The order of the collection is NOT preserved.

StateC & operator [](IndexC ind)
Access a sample.

const StateC & operator [](IndexC ind) const
Access a sample.

DArray1dC<StateC> & DArray()
Access DArray.
For internal use only.

const DArray1dC<StateC> & DArray() const
Access DArray.
For internal use only.

StateC & First()
Access first element in the array.

const StateC & First() const
Access first element in the array.

StateC & Last()
Access last element in the array.

const StateC & Last() const
Access last element in the array.

bool IsEmpty() const
Is this empty ?


Maintainer:Charles Galambos, Documentation by CxxDoc: Tue Aug 13 09:59:02 2002