


Function Name:
cbass_read_bin_col
Description: Reads a column of data from a FITS files
Usage:
cbass_read_bin_col(FILENAME,HDU,COLUMN);
Arguments:
FILENAME: A character array representing the filename.
HDU : Which HDU in the fits file to read
COLUMN : Which column of data to read (it assumes the data is a double at present)
Returns:
Data column
Type 'mfitsio_license' to display the MFITSIO licensing agreement.

0001 % Function Name: 0002 % cbass_read_bin_col 0003 % 0004 % Description: Reads a column of data from a FITS files 0005 % 0006 % Usage: 0007 % cbass_read_bin_col(FILENAME,HDU,COLUMN); 0008 % 0009 % Arguments: 0010 % FILENAME: A character array representing the filename. 0011 % HDU : Which HDU in the fits file to read 0012 % COLUMN : Which column of data to read (it assumes the data is a double at present) 0013 % 0014 % Returns: 0015 % Data column 0016 % 0017 % Type 'mfitsio_license' to display the MFITSIO licensing agreement. 0018 0019 function cbass_read_bin_col(file,hdu,column); 0020 0021 % Author: Charles Copley charles.copley@astro.ox.ac.uk 0022