simplify(args)

Normalize a matrix of numbers by their greatest common divisor.

argsThe array of arguments
return valueThe arguments in the same order divided by the GCD of all of them.

The function can have any number of arguments greater than 0. They should all be integers, or matrices of integers.

simplify(16, 8*3)