On 1/30/2009 5:27 PM, Sturla Molden wrote:
> On 1/30/2009 5:23 PM, Sturla Molden wrote:
> 
>> ux = np.fromfile(nx*ny, dtype=np.float32).view((nx,ny), order='F')
> 
> oops.. this should be
> 
> ux = np.fromfile(file, count=nx*ny, dtype=np.float32).view((nx,ny),
>            order='F')

fu*k


ux = np.fromfile(file, count=nx*ny,
     dtype=np.float32).reshape((nx,ny), order='F')


Sorry for the previous typos, it's Friday and soon weekend...



Sturla Molden
_______________________________________________
Numpy-discussion mailing list
[email protected]
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to