double |
Vector.dot(Vector vector) |
performs the dot product with another vector
|
static double |
Vector.dot(Vector a,
Vector b) |
static dot product function that calls the dot function of a vector
|
double |
Vector.get(int index) |
Gets the data at a particular index
|
void |
Vector.get(Vector.VectorIndex vectorIndex) |
Gets data from an index using the VectorIndex object and stores the value into this object
|
void |
Vector.set(int index,
double value) |
sets the value at a certain index
|
void |
Vector.set(Vector.VectorIndex vectorIndex) |
Set a value in the vector using a VectorIndex
|