Pinned Repositories
compute.io
Computation library.
cosine-similarity
Computes the cosine similarity between two arrays.
covariance
Computes the covariance between one or more arrays.
erfcinv
Inverse complementary error function.
euclidean-distance
Computes the Euclidean distance between two arrays.
hamming
Computes the Hamming distance between two sequences.
lcg
A linear congruential pseudorandom number generator.
median
Computes the median of an array.
minkowski-distance
Computes the Minkowski distance between two arrays.
stdev
Computes the standard deviation.
Compute's Repositories
compute-io/lt
Computes an element-wise comparison (less than).
compute-io/divide
Computes an element-wise division.
compute-io/subtract
Computes an element-wise subtraction.
compute-io/add
Computes an element-wise addition.
compute-io/variance
Computes the variance.
compute-io/ismissing
Computes an element-wise check for missing values.
compute-io/iseven
Computes an element-wise is-even check.
compute-io/isodd
Computes an element-wise is-odd check.
compute-io/flipud
Flips a matrix vertically.
compute-io/intmax
Returns the maximum value of a specified integer type.
compute-io/intmin
Returns the minimum value of a specified integer type.
compute-io/rot90
Rotates a matrix by 90 degrees.
compute-io/sub2ind
Converts subscripts to linear indices.
compute-io/reshape
Reshapes a matrix.
compute-io/gmean
Computes the geometric mean.
compute-io/mean
Computes the arithmetic mean.
compute-io/transpose
Computes the transpose of a matrix.
compute-io/fliplr
Flips a matrix horizontally.
compute-io/todo
compute-io/sum
Computes the sum.
compute-io/prod
Computes the product.
compute-io/to-matrix
Construct a matrix from an array of arrays.
compute-io/ind2sub
Converts linear indices to subscripts.
compute-io/dtype
Determines the underlying data type of an input value.
compute-io/squareform
Turns a distance vector into a distance matrix, and vice-versa.
compute-io/pdist
Computes pairwise distances between arrays.
compute-io/incrmstdev
Provides a method to compute a moving sample standard deviation incrementally.
compute-io/incrmsum
Provides a method to compute a moving sum incrementally.
compute-io/incrmmean
Provides a method to compute a moving arithmetic mean incrementally.
compute-io/incrmvariance
Provides a method to compute a moving sample variance incrementally.