Using Boost Libraries with Mex function in MATLAB

23 views (last 30 days)
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?

Accepted Answer

Kaustubha Govind
Kaustubha Govind on 23 May 2011
You should just need to add additional include directories using the -I argument:
mex Cluster.cpp -IC:\boost_1_46_1

More Answers (3)

Ben Mitch
Ben Mitch on 22 May 2011
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 Comment
Ben Mitch
Ben Mitch on 22 May 2011
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.

Sign in to comment.


Chirag Gupta
Chirag Gupta on 23 May 2011
Edited: John Kelly on 27 Feb 2015
Another solution might be to create your mex files directly from Visual Studio:

Craig
Craig on 23 May 2011
All the suggestions seem to work fine. I haven't tried running mex files from Visual Studio yet, but that will be my next step. Thanks to everyone for the suggestions.

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!