- This error message usually occurs when the linker cannot find the library that contains the function definition.
- This error can occur when you are using a version of MATLAB that is not compatible with C/C++ compiler version.
- Try to resolve this issue by checking if you are using the correct version of the C/C++ compiler that is compatible with your MATLAB version. Refer to the link to check the version compatibility and installation steps.
Undefined reference to mxGetDoubles when building wrapper DLL
조회 수: 3 (최근 30일)
이전 댓글 표시
I have a MATLAB script compiled into a DLL using mcc. I've created a wrapper library to allow me to call a function using C native types (my intention is to produce a DLL that can be imported into LabVIEW). On attempting to build it with mbuild I get errors indicating that mxGetDoubles and mxSetDoubles, which I'd used in the wrapper function, are undefined.
댓글 수: 0
답변 (1개)
Prathamesh
2023년 8월 17일
Hi,
I understand that you are encountering an error message stating “mxGetDoubles and mxSetDoubles are undefined”.
Refer to pointers below to resolve the issue:
https://www.mathworks.com/matlabcentral/answers/2006577-mingw-c-c-compiler-for-matlab-version-r2018b
4. Also, ensure that the header declarations for these functions are done properly.
5. Those functions are for the R2018a memory model API. For that, you need to add the -R2018a option flag.
mex myfile.cpp -R2018a.
Refer to the documentation links for these functions to get more information.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 C Shared Library Integration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!