我正在用 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和 fig2dev
是 xfig 的一部分.
根据您的系统,可能有可用的软件包。
例如在 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
的功能在那时将不可用。
我是一名优秀的程序员,十分优秀!