Neal Becker Fri, 11 Jul 2014 11:17:35 -0700
In numpy, I might do a = np.arange (10) b = a.reshape (2, 5)
now b is a 'view' of a, and modifications to b will change a. How do I do the equivalent in julia?