name: VectorComplexFloat : public MVector<ComplexFloat, complexfloat>

synopsis:

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

#include <VectorComplexFloat.h>

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

VectorComplexFloat val0(5);

complexfloat mean;
complexfloat variance;
val0.assign(L"1-1j, 2-2j, -3+3j, -4-4j, 5j");

mean = val0.mean();

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

variance = val0.var();
description:

The VectorComplexFloat class manages a vector of ComplexFloat objects. It is derived from the
MVector class and inherits the commonly used mathematical, logical, DSP and I/O methods from it.

dependencies:

public constants:

error codes:

protected data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: