Christophe Tribes

Results 65 comments of Christophe Tribes
trafficstars

The error message that bothers me is "missing: Matlab_INCLUDE_DIRS Matlab_MEX_LIBRARY Matlab_MEX_EXTENSION Matlab_ROOT_DIR Matlab_MX_LIBRARY MEX_COMPILER" What happen if your run the "mex -setup" command in Matlab ? This is suppose to...

I was about to suggest this (set(Matlab_ROOT_Dir ...). Clearly the find_package(Matlab ...) is not working properly with cmake 3.16. It can be the FindMatlab.cmake or where your matlab is installed....

I just checked my environment variables : MATLABROOT="/home/matlab/r2021b" Maybe FindMatlab.cmake uses this variable to "find" matlab. Can you check that ?

This issue also arises with OSX. As mentioned previously, the first option is to set the MATLAB root in the CMakeLists file (right before the find_package() call): `set(Matlab_ROOT_DIR "/usr/local/MATLAB/R2021a")` Another...

My architecture is close to yours, except for clang version (clang-1300.0.29.30). I can compile with architecture x86_64 (by default I have arm64). But the compilation works fine. I am not...

The syntax you used is not correct. Run the examples in `$NOMAD_HOME/interfaces/Matlab_MEX/test_nomad_gerad.m` to make sure that everything works normally. You can use the examples to work your problem. Nevertheless, Matlab...

This feature is not yet available in Nomad 4. The part of the documentation mentioning that blackboxes may write output file is not up to date (copied from Nomad 3).

There is a bug when interpreting the matlab blackbox eval for Nomad. The line 456 of file `$NOMAD_HOME/interfaces/Matlab_MEX/Source/nomadmex.cpp ` should be `bboStr += bbo.tostring() + " " ; ` This...

Hello, Several things to check. - Make sure to have the selected gcc compiler. In my case, I need to use gcc 10.1 for Matlab 2012b but the default on...

The problem is that when Matlab starts it loads its own version of the libstdc++ library. This can be incompatible with the libstdc++ that the Nomad libraries require. In our...