Home > mfitsio > cbass_read_header.m

cbass_read_header

PURPOSE ^

Function Name:

SYNOPSIS ^

function HEADER = cbass_read_header(FILENAME);

DESCRIPTION ^

 Function Name:
    fits_read_header

 Description: Reads a FITS file and stores all header information in
 a structure array.

 Usage:
    HEADER = fits_read_header(FILENAME);

 Arguments:
    FILENAME: A character array representing the filename.

 Returns:
    HEADER:   The fits header as a structure array.

 Type 'mfitsio_license' to display the MFITSIO licensing agreement.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 % Function Name:
0002 %    fits_read_header
0003 %
0004 % Description: Reads a FITS file and stores all header information in
0005 % a structure array.
0006 %
0007 % Usage:
0008 %    HEADER = fits_read_header(FILENAME);
0009 %
0010 % Arguments:
0011 %    FILENAME: A character array representing the filename.
0012 %
0013 % Returns:
0014 %    HEADER:   The fits header as a structure array.
0015 %
0016 % Type 'mfitsio_license' to display the MFITSIO licensing agreement.
0017 
0018 function HEADER = cbass_read_header(FILENAME);
0019 
0020 % Author: Damian Eads <eads@lanl.gov>
0021 %
0022 % This software and ancillary information (herein called ``Software'')
0023 % called MFITSIO is made available under the terms described here. The
0024 % SOFTWARE has been approved for release with associated LA-CC number:
0025 % LA-CC-02-085.
0026 %
0027 % This SOFTWARE has been authored by an employee or employees of the
0028 % University of California, operator of the Los Alamos National Laboratory
0029 % under Contract No. W-7405-ENG-36 with the U.S. Department of Energy.
0030 % The U.S. Government has rights to use, reproduce, and distribute this
0031 % SOFTWARE.  The public may copy, distribute, prepare derivative works and
0032 % publicly display this SOFTWARE without charge, provided that this Notice
0033 % and any statement of authorship are reproduced on all copies.  Neither
0034 % the Government nor the University makes any warranty, express or
0035 % implied, or assumes any liability or responsibility for the use of this
0036 % SOFTWARE.  If SOFTWARE is modified to produce derivative works, such
0037 % modified SOFTWARE should be clearly marked, so as not to confuse it with
0038 % the version available from LANL.
0039 %
0040 % Consult the COPYING file for more details on licensing.
0041

Generated on Sun 14-Jun-2015 17:12:45 by m2html © 2005