Warning: include(/data/isip/www/templates/documentation/header/header.html) [function.include]: failed to open stream: No such file or directory in /home5/piconepr/public_html/isip/projects/speech/software/documentation/class/math/vector/VectorComplexFloat/index.html on line 2

Warning: include() [function.include]: Failed opening '/data/isip/www/templates/documentation/header/header.html' for inclusion (include_path='.:/usr/lib64/php:/usr/lib/php') in /home5/piconepr/public_html/isip/projects/speech/software/documentation/class/math/vector/VectorComplexFloat/index.html on line 2

Warning: include(/data/isip/www/templates/documentation/body/index_class.html) [function.include]: failed to open stream: No such file or directory in /home5/piconepr/public_html/isip/projects/speech/software/documentation/class/math/vector/VectorComplexFloat/index.html on line 5

Warning: include() [function.include]: Failed opening '/data/isip/www/templates/documentation/body/index_class.html' for inclusion (include_path='.:/usr/lib64/php:/usr/lib/php') in /home5/piconepr/public_html/isip/projects/speech/software/documentation/class/math/vector/VectorComplexFloat/index.html on line 5

Warning: include(/data/isip/www/templates/documentation/body/bar.html) [function.include]: failed to open stream: No such file or directory in /home5/piconepr/public_html/isip/projects/speech/software/documentation/class/math/vector/VectorComplexFloat/index.html on line 6

Warning: include() [function.include]: Failed opening '/data/isip/www/templates/documentation/body/bar.html' for inclusion (include_path='.:/usr/lib64/php:/usr/lib/php') in /home5/piconepr/public_html/isip/projects/speech/software/documentation/class/math/vector/VectorComplexFloat/index.html on line 6
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: