Sha256: f9c7fd158db40c77671b099d2fe24b351291fd0ca6c9ff205c613d6749aac759
Contents?: true
Size: 670 Bytes
Versions: 9
Compression:
Stored size: 670 Bytes
Contents
This folder contains a set of tools which make it easy to create MATLAB mex functions. To understand how they work, you should read the example_mex_function.cpp, example_mex_struct.cpp, and example_mex_callback.cpp examples. To compile them, you can use CMake. In particular, from this folder execute these commands: mkdir build cd build cmake .. cmake --build . --config release --target install That should build the mex files on any platform. Note that on windows you will probably need to tell CMake to use a 64bit version of visual studio. You can do this by using a command like: cmake -G "Visual Studio 10 Win64" .. instead of cmake ..
Version data entries
9 entries across 9 versions & 1 rubygems