如何在 Matlab MEX 文件中正确包含头文件 C++ 文件(来自 ALGLIB)
How to properly include header C++ files (from ALGLIB) in Matlab MEX files
我正在努力让 MATLAB 中的 mexfunction 从 C++ 文件运行。下面你可以找到我的代码,首先是要编译和调用的 mex 文件以及一个头文件和相应的 cpp 文件。
现在我有两个问题:
- 一道基础题;该代码编译并运行,但通常我已经学会了包含头文件
#include "Test.h" 而不是 cSpl_CPP.cpp 文件中的 #include "Test.cpp"。但是如果我这样做,我会得到以下错误,所以我假设它没有找到 Test 函数。为什么会这样?
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
- 此外,这只是实现 ALGLIB C++ 文件的基本测试,它是数值分析 C++ 代码。我要实现的部分可以在#include "interpolation.h" 中的 Test.h 头文件中找到。如果我取消注释 //real_1d_array x_old = "[-1.0,-0.5,0.0,+0.5,+1.0]";在 Test.cpp 文件中,该函数应访问 interpolation.h 环境以使用命名空间 alglib 中的任何必要函数。但是它returns下面的错误。在我看来和上面的问题一样,它没有找到该功能。为什么?顺便说一句,在 C++ 环境中调用所有这些确实有效,当然是使用抽象的 cSpl_CPP.cpp 文件。
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 - 文件。
我正在努力让 MATLAB 中的 mexfunction 从 C++ 文件运行。下面你可以找到我的代码,首先是要编译和调用的 mex 文件以及一个头文件和相应的 cpp 文件。 现在我有两个问题:
- 一道基础题;该代码编译并运行,但通常我已经学会了包含头文件
#include "Test.h" 而不是 cSpl_CPP.cpp 文件中的 #include "Test.cpp"。但是如果我这样做,我会得到以下错误,所以我假设它没有找到 Test 函数。为什么会这样?
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
- 此外,这只是实现 ALGLIB C++ 文件的基本测试,它是数值分析 C++ 代码。我要实现的部分可以在#include "interpolation.h" 中的 Test.h 头文件中找到。如果我取消注释 //real_1d_array x_old = "[-1.0,-0.5,0.0,+0.5,+1.0]";在 Test.cpp 文件中,该函数应访问 interpolation.h 环境以使用命名空间 alglib 中的任何必要函数。但是它returns下面的错误。在我看来和上面的问题一样,它没有找到该功能。为什么?顺便说一句,在 C++ 环境中调用所有这些确实有效,当然是使用抽象的 cSpl_CPP.cpp 文件。
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 - 文件。