I’m looking to create something like this:
array = [(0,0) (0,0) ;(0,0) (0,0) ; (0,0) (0,0)]
To store the results of a loop where the first iteration returns an array of pairs that I use to overwrite column 1
[(m,n); (m,n); (m,n)]
and the second iteration produces another array of pairs
[(m,n); (m,n); (m,n)]
that I use to overwrite col 2.
I’ve tried initializing using “zeros()”, but that does not work, and it seems like tuples are not initalize-able in Julia?