[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How to call Octave/Matlab script from C++ in Ubuntu?
From: |
Jordi Gutiérrez Hermoso |
Subject: |
Re: How to call Octave/Matlab script from C++ in Ubuntu? |
Date: |
Thu, 10 Apr 2014 12:44:31 -0400 |
On Thu, 2014-04-10 at 08:35 -0700, kaatish wrote:
> So is it possible to compile this to an o file or something similar
> that can be included by another C++ project?
No, you can't compile m-files with Octave. You can only use oct files
to call the Octave interpreter on existing m-files. If you want to use
m-files without Octave at all, this is not currently possible. You'll
have to either have Octave available or distribute all (or enough) of
Octave together with your oct files.
- Jordi G. H.