compute_outer: Computes distance on all possible combinations
Description
Computes the distance between all combination of elements in two vector. a is
vector of size n, and b is a vector of size m, the result, will be a matrix
of size(n,m)
Usage
compute_outer(a, b, op)
Value
A n by m matrix that includes abs difference between elements of vector a and b.