name: VectorUllong : public MVector<Ullong, ullong>

synopsis:

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

#include <VectorUllong.h>

VectorUllong(long length = DEF_LENGTH, ullong value = DEF_VALUE);
VectorUllong(const VectorUllong& vector);
quick start:

VectorUllong val0(5);

ullong mean;
ullong variance;
val0.assign(L"1, 2, 3, 4, 5");

mean = val0.mean();

if (mean != 3) {
  Error::handle(val0.name(), L"mean", Error::TEST, __FILE__, __LINE__);
  Integral::exit();
}

variance = val0.var();
description:

The VectorUllong class manages a vector of Ullong objects. It is derived from the
MVector class and inherits the commonly-used mathematical, logical, DSP and i/o methods from it. A VectorUllong object can read itself from (or write itself to) a Sof file. It includes the memory management methods which use the MemoryManager class to allocate or delete memory.

dependencies:

public constants: error codes:

protected data:

required public methods:

class-specific public methods:

private methods: examples:

notes: