Configure Octave with gnuplot support in Emacs

I added the Octave binary directory containing the octave and gnuplot executables to PATH on Windows 7. This allowed me to start lower octave mode in Emacs. However, I cannot display the graphs as I can with the command line version. No errors were found; graphs just don't appear anywhere. How can i fix this?

Edit: GNU Plot does not start in Emacs Calc, although some buffers associated with GNU Plot are created. But, as far as I see, there are no errors.

+4
source share
1 answer

Try:

graphics_toolkit gnuplot; 

on the Octave console.

I had the same issue and it worked for me.

+3
source

Source: https://habr.com/ru/post/1398639/


All Articles