quick start:g++ [flags ...] file ... -l /isip/tools/lib/$ISIP_BINARY/lib_math_vector.a #include <VectorLlong.h> VectorLlong(long length = DEF_LENGTH, llong value = DEF_VALUE); VectorLlong(const VectorLlong& vector);
description:VectorLlong val0(5); llong mean; llong 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();
static const String CLASS_NAME = L"VectorLlong";
static const long ERR = 22700;
static MemoryManager mgr_d;
static const String& name();
static boolean diagnose(Integral::DEBUG debug_level);
boolean debug(const unichar* message) const;
~VectorLlong();
VectorLlong(long length = DEF_LENGTH, llong value = DEF_VALUE );
VectorLlong(const VectorLlong& vector);
assign methods are inherited from the MVector class
VectorLlong& operator= (const VectorLlong& vector);
boolean read(Sof& sof, long tag, const String& name = CLASS_NAME);
boolean write(Sof& sof, long tag, const String& name = CLASS_NAME);
these methods are inherited from the MVector class
static void* operator new(size_t size);
static void* operator new[](size_t size);
static void operator delete(void* ptr);
static void operator delete[](void* ptr);
static boolean setGrowSize(long grow_size);
VectorLlong(const String& arg, unichar delim_a = DEF_DELIM);
VectorLlong(const unichar* arg, unichar delim_a = DEF_DELIM);
VectorLlong& operator= (llong value);
VectorLlong val0(3); val0.assign(L"5, 7, 9"); String tmp_filename(L"foo"); Sof tmp_file; tmp_file.open(tmp_filename, File::WRITE_ONLY, File::TEXT); val0.write(tmp_file, (long)0); tmp_file.close();
VectorLlong val0; VectorLlong val1(4); llong dotp; llong norm_val; val0.assign(L"1, 3, 5, 7"); val1.assign(L"2, 4, 6, 3"); dotp = val0.dotProduct(val1); norm_val = val1.norm();