Hello List,<br><br>Can I make a view of an entire array but with a different shape?<br><br>For example:<br><br>a = zeros((2,3,4))<br><br>Now I want array b to be identical to a, but with shape (2,12). <br><br>b = a; b.shape = (2,12)<br>
<br>This doesn't work, of course, as also the shape of a changes.<br>I know I can simply make a copy of a and change the shape, but can I make b to be a view of a (so that when I change a, then b changes as well)?<br>
<br>Thanks,<br><br>Mark<br>