我正在用 Octave 和命令saveas(gcf,'rainzam.pdf')
绘制轮廓,我的输出正常,但是我只是想知道为什么会收到以下警告:
warning: print.m: epstool binary is not available.
Some output formats are not available.
warning: print.m: fig2dev binary is not available.
Some output formats are not available.
这并不严重,但是如果有办法使它们消失,我将不胜感激。
最佳答案
如here所述,您需要安装epstool和xfig的fig2dev
。
根据您的系统,可能会有可用的软件包。
例如在openSUSE
上,只需发出cnf epstool
即可
Try installing with:
sudo zypper install epstool
如果
cnf epstool
仍然产生epstool: command not found
,那么您需要订阅Publishing
存储库。最简单的方法是使用one-click install。同样,
sudo zypper install transfig
获得fig2dev
。或者,您可以禁用警告:
warning("off", "print.m: epstool binary is not available")
warning("off", "print.m: fig2dev binary is not available")
但是,那时
epstool
和fig2dev
的功能将不可用。