Using Boost Libraries with Mex function in MATLAB
조회 수: 18 (최근 30일)
이전 댓글 표시
I am trying to write a Mex function and compile it in the MATLAB command window using
>> mex Cluster.cpp
I have already done mex -setup and written other Mex functions that run without error.
I am using the boost libraries for C++ in my program. This is one of the headers that I am using:
#include <boost/random/uniform_int.hpp>
It gives me the following error message when I try to compile:
fatal error C1083: Cannot open include file: 'boost/random /uniform_int.hpp': No such file or directory
I then included the full path name:
#include <C:/boost_1_46_1/boost/random/uniform_int.hpp>
and get a new error message:
C:\boost_1_46_1\boost\random\uniform_int.hpp(22) : fatal error C1083: Cannot open include file: 'boost/config.hpp': No such file or directory.
This indicates that it was able to open the header file that it previously couldn't. But inside the uniform_int.hpp file there is a #include boost/config.hpp and it can't open that header file.
I don't really feel like messing with the boost header files to try to get it to work. The boost libraries also work fine when I use them in Visual C++. Is there any way I can get this to work by doing something in the MATLAB editor or at the command window prompt? I know in Visual C++ I can just add additional "include" directories. Is there a similar way of doing this through MATLAB?
댓글 수: 0
채택된 답변
Kaustubha Govind
2011년 5월 23일
You should just need to add additional include directories using the -I argument:
mex Cluster.cpp -IC:\boost_1_46_1
댓글 수: 0
추가 답변 (3개)
Ben Mitch
2011년 5월 22일
Yup. Find your mexopts file (mexopts.bat, since you seem to be on Windows, which you'll find at something like c:\users\craig\appdata\roaming\mathworks\RXXXXx\mexopts.bat I think). At the top you'll find it defines the INCLUDE variable - just add the path to your boost files there, for example:
INCLUDE=C:\boost_1_46_1;C:\My\Other\Path;%MATLAB%\include;
댓글 수: 1
Ben Mitch
2011년 5월 22일
PS. if you can't find, or can't work out how to edit, this file, an alternative is to set (or create) your user environment variable "INCLUDE" to include the path to boost, in a similar way. find this under my computer/properties/system or some such.
Chirag Gupta
2011년 5월 23일
편집: John Kelly
2015년 2월 27일
Another solution might be to create your mex files directly from Visual Studio:
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 MATLAB Code Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!