Read header information from current ASCII table
[rowlen,nrows,ttype,tbcol,tform,tunit,extname] = readATblHdr(fptr)
[rowlen,nrows,ttype,tbcol,tform,tunit,extname] = readATblHdr(fptr)
reads
header information for the current ASCII table.
This function corresponds to the fits_read_atblhdrll
(ffghtbll)
function in the CFITSIO library C API.
import matlab.io.* fptr = fits.openFile('tst0012.fits'); fits.movAbsHDU(fptr,5); [rowlen,nrows,ttype,tbcol,tform,tunit,extname] = fits.readATblHdr(fptr); fits.closeFile(fptr);