Binary table information
[ttype,tunit,typechar,repeat,scale,zero,nulval,tdisp]
= getBColParms(fptr,colnum)
[ttype,tunit,typechar,repeat,scale,zero,nulval,tdisp]
= getBColParms(fptr,colnum)
gets information about an existing
binary table column.
This function corresponds to the fits_get_bcolparms
(ffgbcl)
function in the CFITSIO library C API.
Get information about the second column in a binary table.
import matlab.io.* fptr = fits.openFile('tst0012.fits'); fits.movAbsHDU(fptr,2); [ttype,tunit,typechar,repeat,scale,zero,nulval,tdisp]= fits.getBColParms(fptr,2); fits.closeFile(fptr);