Function Name: fits_delete_keyword Description: Deletes a keyword from the header of a FITS file. Usage: fits_delete_keyword(FILENAME, KEYWORD); Arguments: FILENAME: A character array representing the filename. KEYWORD: The keyword to delete. Returns: Nothing. Type 'mfitsio_license' to display the MFITSIO licensing agreement.
0001 % Function Name: 0002 % fits_delete_keyword 0003 % 0004 % Description: Deletes a keyword from the header of a FITS file. 0005 % 0006 % Usage: 0007 % fits_delete_keyword(FILENAME, KEYWORD); 0008 % 0009 % Arguments: 0010 % FILENAME: A character array representing the filename. 0011 % KEYWORD: The keyword to delete. 0012 % 0013 % Returns: 0014 % Nothing. 0015 % 0016 % Type 'mfitsio_license' to display the MFITSIO licensing agreement. 0017 0018 function fits_delete_keyword(FILENAME, KEYWORD); 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.