如何在 Matlab MEX 文件中正确包含头文件 C++ 文件(来自 ALGLIB)

How to properly include header C++ files (from ALGLIB) in Matlab MEX files

我正在努力让 MATLAB 中的 mexfunction 从 C++ 文件运行。下面你可以找到我的代码,首先是要编译和调用的 mex 文件以及一个头文件和相应的 cpp 文件。 现在我有两个问题:

    Error using mex
    C:\Users\XXX\AppData\Local\Temp\mex_26596607590260_19292\cSpl_CPP.obj:cSpl_CPP.cpp:(.text+0x35):
    undefined reference to `Test()'
    collect2.exe: error: ld returned 1 exit status
    Error using mex
    C:\Users\XXX\AppData\Local\Temp\mex_27656676634838_19292\cSpl_CPP.obj:cSpl_CPP.cpp:(.text+0x8f):
    undefined reference to `alglib::real_1d_array::real_1d_array(char const*)'
    C:\Users\XXX\AppData\Local\Temp\mex_27656676634838_19292\cSpl_CPP.obj:cSpl_CPP.cpp:(.text+0xb0):
    undefined reference to `alglib::real_1d_array::~real_1d_array()'
    C:\Users\XXX\AppData\Local\Temp\mex_27656676634838_19292\cSpl_CPP.obj:cSpl_CPP.cpp:(.text+0xf7):
    undefined reference to `alglib::real_1d_array::~real_1d_array()'
    collect2.exe: error: ld returned 1 exit status 

只是为了避免编译命令出现问题;我使用:

    ipath = ['-I' fullfile(pwd,'cSpl','src')]; %Folder where the c & h files except cSpl_CPP.cpp are located
    mex(ipath,'cSpl_CPP.cpp')

但是,将所有内容放在同一个文件夹中不会改变任何内容。

这适用于问题 1,因此它似乎包含了正确的文件夹,因为它确实找到了 Test.cpp,但显然不是 Test.h...

对我来说,我似乎遇到了包括头文件在内的一般问题,但我不知道是哪一个。有人知道如何解决这个问题吗???

非常感谢你们! 来自德国的问候 巴勃罗

Mex 函数调用 cSpl_CPP.cpp 编译和调用:

#include "math.h"
#include "matrix.h"
#include "mex.h"
#include "Test.cpp"
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) 
{
    mexPrintf("Hello World!\n"); // prints !!!Hello World!!!
    int res;
    res = Test();
    mexPrintf("Hello World @%d!\n",res); // prints !!!Hello World!!!
    return;
}

测试头文件Test.h:

#ifndef TEST_H_
#define TEST_H_

#include "interpolation.h"
using namespace alglib;
#include <iostream>
using namespace std;

int Test();

#endif /* TEST_H_ */

测试cpp文件Test.cpp:

#include "Test.h"
int Test()
{
    int c = 55;
    cout << "Test works!" << endl;
    //real_1d_array x_old = "[-1.0,-0.5,0.0,+0.5,+1.0]";
    cout << "worked good\n";
    return c;
}

实际上解决方案是根据 Matlab 中的命令编译所有可能使用的 cpp 文件,并将所有文件放在同一文件夹中:

File = 'cSpl_CPP.cpp'; % Mexfunction
list = dir('**/*.cpp'); % Collect all cpp files
cppfiles = {list.name}; % Gather file names
cppfiles(find(strcmp(cppfiles,File))) = []; % delete the Mexfuntion from list 
cppfiles = {File,cppfiles{:}}; % Put the Mexfuntion on the first position
mex(cppfiles{:}); % compile all files

当然所有#include 命令只包含 *.h - 文件。