Dear All,
Ive started learning Python couple of hours ago, after working with IDL for
a long time and I have a question I hope you would not mind answering.
I have a binary file that I would like to read into a 512point complex array
and print couple of points, say first and the fifth terms.
If you are familiar with Matlab or IDL, the corresponding IDL commands
would be something like:
data = complexarr(512)
openr, lun, 'datafile', /get_lun
readu, lun, data
How can i do the same in Python? Thanks in advance for your help.