Re: Seeking help in Octave C++ API

Carlo De Falco <[email protected]>
Newsgroups gmane.comp.gnu.octave.general
Message-ID <[email protected]>

> Il giorno 5 apr 2021, alle ore 12:11, Siddhartha Roy <[email protected]> ha scritto:
> 
> I have installed image package but I don't know how to load the package while using C++. I mean I know how to load it in octave (by running "pkg load image") but I don't know how to load it while using C++.

You are going over the same point again and again!
Once you embed the interpreter, you can run any octave language code from your C++ program using the "feval" method ...

so, if at the Octave prompt you would write

  pkg ("load", "image")

in C++ you would do something like

  octave_value_list ov;
  ov(0) = "load";
  ov(1) = "image";
  interp.feval ("pkg", ov, 0);

Please stop writing to the maintainers list, as I said the help list is better suited for this topic.
It would also be nice if you would try to adapt to the etiquette of the Octave lists and stop top posting.

c.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.