#include <gmatrix.h>
The GVector class implements a N-vector object. It is mainly used for mathematics purpose (and therefore, it is not a good idea to make a GVector of std::string objects :) All the classical operators are defined : arithmetics (+, -, *, /), dot product (via the * operator) and data access (via the [] operator).
S | the size of the vector |
TYPE | the underlying data type (default is float) |