convert byte array [48,1221] to float [message #84931] |
Tue, 18 June 2013 13:50  |
neb59
Messages: 2 Registered: June 2013
|
Junior Member |
|
|
I used readfits to read in data and it produced a 48 by 1221 byte array. I tried using
"ieee_to_host, data, IDLTYPE=4"
but I am having no luck converting it to a float array. Help would be appreciated !! Thanks !
|
|
|
|
Re: convert byte array [48,1221] to float [message #84935 is a reply to message #84932] |
Tue, 18 June 2013 18:37   |
neb59
Messages: 2 Registered: June 2013
|
Junior Member |
|
|
On Tuesday, June 18, 2013 4:57:32 PM UTC-4, David Fanning wrote:
> neb59@cornell.edu writes:
>
>
>
>> I used readfits to read in data and it produced a 48 by 1221 byte array. I tried using
>
>> "ieee_to_host, data, IDLTYPE=4"
>
>> but I am having no luck converting it to a float array. Help would be appreciated !!
>
>
>
> I'd try this:
>
>
>
> array = Float(data)
>
>
>
> Cheers,
>
>
>
> David
>
>
>
> --
>
> David Fanning, Ph.D.
>
> Fanning Software Consulting, Inc.
>
> Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
>
> Sepore ma de ni thue. ("Perhaps thou speakest truth.")
I tried that but it converts it to a 48 by 1221 float array and it is supposed to be a 12 by 1221 array. Any other ideas? Thank you !
|
|
|
Re: convert byte array [48,1221] to float [message #84936 is a reply to message #84935] |
Tue, 18 June 2013 19:33  |
David Fanning
Messages: 11724 Registered: August 2001
|
Senior Member |
|
|
neb59@cornell.edu writes:
> I tried that but it converts it to a 48 by 1221 float array and it is supposed to be a 12 by 1221 array. Any other ideas? Thank you !
Oh, I see. Try this, then:
array = Float(data, 0, 12, 1221)
Cheers,
David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
Sepore ma de ni thue. ("Perhaps thou speakest truth.")
|
|
|