Display FITS metadata
fitsdisp(filename)
fitsdisp(filename,Name,Value)
fitsdisp(filename)
displays metadata for
all the Header/Data Units (HDUs) found in the FITS file specified
by filename
.
fitsdisp(
displays
metadata for all the Header/Data Units (HDUs) found in the FITS file
with additional options specified by one or more filename
,Name,Value
)Name,Value
pair
arguments.
|
Name of an existing FITS file specified as a character vector or string scalar. |
Specify optional
comma-separated pairs of Name,Value
arguments. Name
is
the argument name and Value
is the corresponding value.
Name
must appear inside quotes. You can specify several name and value
pair arguments in any order as
Name1,Value1,...,NameN,ValueN
.
|
Positive scalar value or vector specifying the HDUs. |
|
Specified as one of the following:
Default: |
Display metadata in the 2nd HDU in the FITS file.
fitsdisp('tst0012.fits','Index',2);
Display the metadata in the 1st, 3rd, and 5th HDUs in a file.
fitsdisp('tst0012.fits','Index',[1 3 5]);
Display all metadata in the 5th HDU in a file
fitsdisp('tst0012.fits','Index',5,'Mode','full');
For copyright information, see the cfitsiocopyright.txt
file.