Read header information from current binary table
[nrows,ttype,tform,tunit,extname,pcount] = readBTblHdr(fptr)
[nrows,ttype,tform,tunit,extname,pcount] = readBTblHdr(fptr)
reads
header information for the current binary table.
This function corresponds to the fits_read_btblhdrll
(ffghbnll)
function in the CFITSIO library C API.
import matlab.io.* fptr = fits.openFile('tst0012.fits'); fits.movAbsHDU(fptr,2); [nrows,ttype,tform,tunit,extname,pcount] = fits.readBTblHdr(fptr); fits.closeFile(fptr);