name: Component

synopsis:

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

#include <Component.h>

Component(ALGORITHM algorithm = DEF_ALGORITHM);
Component(const Component& arg);
boolean setAlgorithm(const Algorithm& arg);
boolean getOutputName(const String& oname);
quick start:

Component mfcc;
Window win;
win.setSize(12);
win.setAlgorithm(Window::HAMMING);
mfcc.setAlgorithm(win);
description:

Signal flow graphs in isip_transform are represented using a graph of algorithm objects. This class is used to represent a block in this graph. Each component object holds an object. A related class, Recipe, is used to represent the entire graph (as a graph of Component objects).

dependencies:

public constants:

error codes:

protected data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: