# Functions
Average is delegated to calculate the average of an int array.
CalculateMaxPrimeFactor is delegated to calculate the max prime factor for the given input.
Correlation is delegated to calculate the correlation for the two given arrays.
CosineSimilarity is delegated to calculate the Cosine Similarity for the given array.
Covariance is delegated to calculate the Covariance between the given arrays.
Dot is delegated to multiply the given array and sum every number of the result array.
DumpMatrix is delegated to print the given matrix.
EuclideanDistance is delegated to calculate the Euclidean distance for the given array.
ExtractEvenNumber Is delegated to extract only the even number from the input array.
FindDivisor is delegated to find every divisor for the given input.
FindIndexValue is delegated to retrieve the index of the given value into the input array.
GenerateFibonacci is delegated to generate the Fibonacci sequence.
InitMatrix is delegated to initialize a new empty matrix.
InitMatrixCustom is delegated to initialize a matrix with the given dimension using the same value for each field.
IsPrime is delegated to verify if the given number is Prime.
ManhattanDistance is delegated to calculate the Manhattan norm for the given array.
Max is delegated to return the max from the two given numbers.
MaxIndex return the index that contains the max value for the given array.
Maxs is delegated to return the max value with a variable number of input int.
Median is delegated to calculate the median for the given array.
Min is delegated to return the min from the two given numbers.
MinIndex return the index that contains the min value for the given array.
Mins is delegated to return the min value with a variable number of input int.
Mode is delegated to calculate the mode of the given array.
MultiplyMatrix is delegated to execute the multiplication between the given matrix without extra allocation.
NewArray is delegated to initialize a new array of the given dimension, populated with the same input value.
SimilarityPreCheck is delegated to verify that the given array have the correct size.
SortMaxIndex is delegated to return an array that contains the position of the order value (from max to min) of the given array {1, 9, 2, 10, 3} -> [3 1 4 2 0] || {7, 6, 5, 4, 3, 2, 1} -> [0 1 2 3 4 5 6] || {1, 2, 3, 4, 5, 6, 7} -> [6 5 4 3 2 1 0].
StandardDeviation is delegated to calculate the STD for the given array.
SubtractArray subtract of every element contained in the array and return the result.
SubtractArrays is delegated to sum the two given array.
SubtractMatrix is delegated to sum the given matrix.
SumArray return the sum of every element contained in the array.
SumArrays is delegated to sum the two given array.
SumArraysPadded is delegated to sum 2 array of different length.
SumMatrix is delegated to sum the given matrix.
Transponse1D This method does not perform the real transpose.
No description provided by the author