Main Content

matlab.io.fits.fileName

Name of FITS file

Syntax

name = fileName(fptr)

Description

name = fileName(fptr) returns the name of the FITS file associated with the file handle.

This function corresponds to the fits_file_name (ffflnm) function in the CFITSIO library C API.

Examples

import matlab.io.*
fptr = fits.openFile('tst0012.fits','READONLY');
name = fits.fileName(fptr);
fits.closeFile(fptr);