Main Content

matlab.io.fits.writeComment

向 CHU 写入或追加 COMMENT 关键字

语法

writeComment(fptr,comment)

说明

writeComment(fptr,comment) 向 CHU 写入(追加)COMMENT 关键字。参数 comment 为注释内容,指定为字符向量或字符串标量。当注释内容超过 70 个字符时,将跨多个 COMMENT 关键字继续输出。

此函数对应于 CFITSIO 库 C API 中的 fits_write_comment (ffpcom) 函数。

示例

import matlab.io.*
fptr = fits.createFile('myfile.fits');
fits.createImg(fptr,'byte_img',[100 200]);
fits.writeComment(fptr,'this is a comment');
fits.writeComment(fptr,'this is another comment');
fits.closeFile(fptr);
fitsdisp('myfile.fits','mode','full');

另请参阅

|