[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Calling Octave built in functions from C, not C++
From: |
Carlo De Falco |
Subject: |
Re: Calling Octave built in functions from C, not C++ |
Date: |
Sat, 26 Jan 2019 11:02:56 +0000 |
> On 26 Jan 2019, at 03:29, Allan Branscomb <address@hidden> wrote:
>
> There is mention that it can be done but I haven't been able to find any
> examples in which C is the calling language.
Where did you find mention of that? builtin functions are declared as :
extern OCTINTERP_API octave_value_list
Fnorm (const octave_value_list& = octave_value_list (), int = 0);
and "octave_value_list" is definitely not a C compatible type ...
c.