|
Re: How to sum matrices of "fits" images in IDL? [message #63419 is a reply to message #63347] |
Thu, 06 November 2008 08:42  |
Jeremy Bailin
Messages: 618 Registered: April 2008
|
Senior Member |
|
|
On Nov 5, 9:38 am, griffon...@gmail.com wrote:
> Hello everyone,
>
> Anyone would know how to sum matrices of primary "*.fit" files into
> one file without using the data in the matrices, only using the
> headers?
>
> Thank you.
>
> Griffons
I don't think I understand what you mean... how do you expect to
calculate the sum without accessing the values? I'm imagining that you
want something like:
data1 = readfits(file1, header=head1)
data2 = readfits(file2, header=head2)
datasum = data1 + data2
-Jeremy.
|
|
|