I am not sure how to go about this in Python, if its even possible. What I need to do is create an array (or a matrix, or vector?) from 3 separate arrays. Each array as 4
Check the Python itertools standard module:
itertools
itertools.combinations(iterable, r) Return r length subsequences of elements from the input iterable.
itertools.combinations(iterable, r)
Return r length subsequences of elements from the input iterable.