0

I'm currently working on a project, where I need to include few of Octave functions (exactly Griddata). My question is, if it's possible to use my octave code as a c++ library, which I just can include to my Objective-C project and give the input to the library, which computes the result and return the output to my project.

I already searched the web, but I couldn't find anything :/

The function i'm looking for is: https://octave.sourceforge.io/octave/function/griddata.html

Thanks

romeodz
  • 31
  • 4

1 Answers1

0

You can embed the Octave interpreter into your program and then call your Octave-function using octave::feval.

H. Rittich
  • 814
  • 7
  • 15