I am plotting contours with octave and with the command saveas(gcf,'rainzam.pdf')
I get the output ok, but I was just wondering why I get the following warnings:
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.
This is not serious but if there is a way of making them disappear, I would appreciate assistance.
As explained here, you need to install epstool and fig2dev
which is part of xfig.
Depending on your system, there might be packages available.
For instance on openSUSE
, just issue cnf epstool
which yields
Try installing with:
sudo zypper install epstool
If cnf epstool
still yields epstool: command not found
, then you need to subscribe to the Publishing
repo. The easiest is to use one-click install.
And similarly, sudo zypper install transfig
to get fig2dev
.
Alternately, you could disable the warnings:
warning("off", "print.m: epstool binary is not available")
warning("off", "print.m: fig2dev binary is not available")
But the functionality of epstool
and fig2dev
would not be available then.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With