Keyword
[value,comment] = readKey(fptr,keyname)
[value,comment] = readKey(fptr,keyname)
returns
the specified key and comment. value
and comment
are
returned as character vectors.
This function corresponds to the fits_read_key_str
(ffgkys)
function in the CFITSIO library C API.
import matlab.io.* fptr = fits.openFile('tst0012.fits'); n = fits.getNumHDUs(fptr); for j = 1:n fits.movAbsHDU(fptr,j); [key,comment] = fits.readKey(fptr,'NAXIS'); fprintf('HDU %d: NAXIS %s, "%s"\n', j, key, comment); end fits.closeFile(fptr);