在C中调用GNU Octave函数吗?

时间:2019-05-16 20:32:31

标签: c octave

我想使用矩阵代数和优化。我已经为矩阵代数测试了不同的C和C ++库,但是它们的问题是它们不能像GNU Octave一样处理垃圾数据。 C和C ++中的垃圾数据降低到了e-8,但是在GNU Octave中,数据将被降低到e-17。如果您打算在计算中使用例如测量中的垃圾数据,那将非常有用。它们不会影响您的结果。

但是GNU Octave有一个C ++ API,我不太了解如何使用。但是我想使用C并从C​​调用GNU Octave函数。

有可能我可以创建一个包含2D数组和维度的结构,然后将其发送到GNU Octave,然后我将再次返回一个具有结果和维度的结构,例如解决方案。

1 个答案:

答案 0 :(得分:3)

有一个c mex接口。但是,必须先嵌入并初始化八度音阶解释器,然后才能调用任何mex函数。自linked answer建议的Octave 4.4 octave_main起已弃用,还需要进行一些其他更改才能使其对mex程序有用。因此,我准备了一个c ++源文件calloctave.cc,其中包含函数mexCallOctavefree_arg_list及其标头calloctave.h

calloctave.cc

// calloctave.cc

#include "interpreter.h"
#include "mxarray.h"
#include "parse.h"

extern "C"
int
mexCallOctave (int nargout, mxArray *argout[], int nargin,
               mxArray *argin[], const char *fname)
{

  static octave::interpreter embedded_interpreter;
  if (!embedded_interpreter.initialized())
    embedded_interpreter.execute ();

  octave_value_list args;

  args.resize (nargin);

  for (int i = 0; i < nargin; i++)
    args(i) = mxArray::as_octave_value (argin[i]);

  bool execution_error = false;

  octave_value_list retval;


  retval = octave::feval (fname, args, nargout);

  int num_to_copy = retval.length ();

  if (nargout < retval.length ())
    num_to_copy = nargout;

  for (int i = 0; i < num_to_copy; i++)
    {
      argout[i] = new mxArray (retval(i));
    }

  while (num_to_copy < nargout)
    argout[num_to_copy++] = nullptr;

  return execution_error ? 1 : 0;
}

extern "C"
void 
free_arg_list (int nargs, mxArray* arglist[])
{
    for(int i = 0; i < nargs; i++)
            delete arglist[i];
}

calloctave.h

// calloctave.h
#pragma once
#include "mex.h"

#if defined  (__cplusplus)
extern "C" {
#endif

int
mexCallOctave (int nargout, mxArray *argout[], int nargin,
               mxArray *argin[], const char *fname);
void 
free_arg_list (int nargs, mxArray* arglist[]);

#if defined  (__cplusplus)
}
#endif

Here是对mex文件的基本介绍。您可以编译示例hello world程序,将选项--verbose作为mkoctfile --mex --verbose hello.c添加为选项,以获取将其用于实际程序编译所需的编译器选项列表。请注意,由于calloctave.cc是c ++源代码,因此应使用c ++编译器(例如g ++)进行编译。 在以下示例中,调用了m函数“ myfunction”。它获得一个输入并产生一个输出。 mexCallOctave用于调用八度音程,其签名与mexCallMATLAB相同。

myfunction.m

% myfunction.m
function out=  myfunction( a )
    out = sum(a);
endfunction

main.c

//main.c
#include <stdio.h>
#include "calloctave.h"   
int main()
{
    double input_data[] = {0,1,2,3,4,5,6,7,8,9,10};

    const int nargin = 1;
    const int nargout = 1;
    mxArray* rhs[nargin];
    mxArray* lhs[nargout];

    // allocate mex array
    rhs[0] = mxCreateDoubleMatrix( 10, 1, mxREAL);
    double* rhs_ptr = mxGetPr( rhs[0] );

    // copy data from input buffer to mex array
    for (int i = 0 ; i < 10; i++)
        rhs_ptr[i] = input_data[i];

    // call octave function
    mexCallOctave(nargout, lhs, nargin, rhs, "myfunction");

    double* lhs_ptr = mxGetPr( lhs[0] );

    double output_data = *lhs_ptr;

    // show the result
    printf ("result = %f", output_data);

    // free memory

    mxDestroyArray(rhs[0]);
    free_arg_list(nargout, lhs);
}