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?

Reply via email to