# Functions
Abs computes the absolute value of each element in a vector.
AbsInPlace computes the absolute value of each element in a vector and stores the result in the vector.
Add adds two vectors together and returns the result.
AddInPlace adds two vectors together and stores the result in the first vector.
AddNumber adds a number to each element of a vector and returns the result.
AddNumberInPlace adds a number to each element of a vector and stores the result in the vector.
DivideNumber divides each element of a vector by a number and returns the result.
DivideNumberInPlace divides each element of a vector by a number and stores the result in the vector.
Dot computes the dot product of two vectors.
EuclidianDistance computes the Euclidian distance between two vectors.
Magnitude computes the magnitude of a vector.
Max computes the maximum element in a vector.
func Mean computes the mean of a vector.
Min computes the minimum element in a vector.
MultiplyNumber multiplies each element of a vector by a number and returns the result.
MultiplyNumberInPlace multiplies each element of a vector by a number and stores the result in the vector.
Normalize normalizes a vector to have a magnitude of 1.
Product computes the product of all elements in a vector.
Subtract subtracts one vector from another and returns the result.
SubtractInPlace subtracts one vector from another and stores the result in the first vector.
SubtractNumber subtracts a number from each element of a vector and returns the result.
SubtractNumberInPlace subtracts a number from each element of a vector and stores the result in the vector.
Sum computes the sum of all elements in a vector.