How to import an octave in C ++ or C #

I am currently working on a machine learning project. There I have to import the octave into the C ++ or C # GUI library, because the octave contains a bit of coding, after that there is a huge project.

I wonder what I call the octave implementation in C ++ and work there as a C ++ function.

+4
source share
2 answers

What you are probably looking for are Dynamically related functions .

Octave has the ability to include compiled code as dynamically and then use these extensions as if they were part of Octave itself. Octave can call C ++ code through its own oct file file interface or C code through its mex interface. It can also indirectly call functions written in any other language through a simple shell. Reasons for writing code in a compiled language can be either a link to an existing code fragment and its use inside Octave or to improve performance for key code fragments.

For the opposite, see here .

+4
source

Octave ++ /, Armadillo - Octave ( Matlab).

+2

All Articles