How do I create a simple Octave distributable without installing Octave

Solution: Create a distributable exe using mkoctfile, and package this exe with the core Octave files, and other .oct and .m files as necessary. Step 1: Create a stand-alone executable. You can see code that works here: http://www.gnu.org/software/octave/doc/interpreter/Standalone-Programs.html Particularly the file “embedded.cc”. I have simplified that file as follows: #include <iostream> #include <octave/oct.h> #include <octave/octave.h> … Read more