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/scalar/Double/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/scalar/Double/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/scalar/Double/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/scalar/Double/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/scalar/Double/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/scalar/Double/index.html on line 6
name: Double: public MScalar<double, float64>

synopsis:

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

#include <Double.h>

Double(double arg = DEF_VALUE);
Double(const Double& arg);
quick start:

Double val0;
val0 = 10.0;

Double val1(5.0);
Double val2;

val2 = val0.exp10(2.0) + val1.pow(3.0);
description:

The Double class manages 64-bit float numbers
(float64). It is derived from the MScalar class and inherits the commonly-used mathematical, logical, DSP and i/o methods from it. A Double 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: