[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Calling Octave from C++
From: |
Mike Miller |
Subject: |
Re: Calling Octave from C++ |
Date: |
Mon, 26 Mar 2018 21:51:17 -0700 |
User-agent: |
Mutt/1.9.4 (2018-02-28) |
On Tue, Mar 27, 2018 at 13:39:26 +0900, Tatsuro MATSUOKA wrote:
> For me something seems wrong with octave-4.2.2.
> Upcoming 4.4 (now still 4.3.0+), code rewrite as indicated by Mike,
> problem seems to be solved.
As I tried to show in my last message, the example is different for
Octave 4.2 vs 4.4.
In Octave 4.2, you need to initialize the interpreter with
string_vector argv (2);
argv(0) = "embedded";
argv(1) = "-q";
octave_main (2, argv.c_str_vec (), 1);
In Octave 4.4, you need to initialize the interpreter with
octave::interpreter interpreter;
int status = interpreter.execute ();
--
mike
signature.asc
Description: PGP signature
- Re: Calling Octave from C++, (continued)
- Re: Calling Octave from C++, andrea.delbravo, 2018/03/24
- Re: Calling Octave from C++, Tatsuro MATSUOKA, 2018/03/25
- Re: Calling Octave from C++, Tatsuro MATSUOKA, 2018/03/26
- Re: Calling Octave from C++, Mike Miller, 2018/03/26
- Re: Calling Octave from C++, Tatsuro MATSUOKA, 2018/03/27
- Re: Calling Octave from C++, Tatsuro MATSUOKA, 2018/03/27
- Re: Calling Octave from C++, Tatsuro MATSUOKA, 2018/03/27
- Re: Calling Octave from C++,
Mike Miller <=
- Re: Calling Octave from C++, Tatsuro MATSUOKA, 2018/03/27
- Re: Calling Octave from C++, Tatsuro MATSUOKA, 2018/03/27
- Re: Calling Octave from C++, andrea.delbravo, 2018/03/27
- Re: Calling Octave from C++, Tatsuro MATSUOKA, 2018/03/27
- Re: Calling Octave from C++, andrea.delbravo, 2018/03/27
Re: Calling Octave from C++, Tatsuro MATSUOKA, 2018/03/22