我正在用 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所述,您需要安装epstoolxfigfig2dev

根据您的系统,可能会有可用的软件包。

例如在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")

但是,那时epstoolfig2dev的功能将不可用。

09-08 00:25