Azzera filtri
Azzera filtri

Undefined reference to mxGetDoubles when building wrapper DLL

12 visualizzazioni (ultimi 30 giorni)
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.

Risposte (1)

Prathamesh
Prathamesh il 17 Ago 2023
Hi,
I understand that you are encountering an error message stating “mxGetDoubles and mxSetDoubles are undefined”.
Refer to pointers below to resolve the issue:
  1. This error message usually occurs when the linker cannot find the library that contains the function definition.
  2. This error can occur when you are using a version of MATLAB that is not compatible with C/C++ compiler version.
  3. 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.
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.

Categorie

Scopri di più su C Shared Library Integration in Help Center e File Exchange

Prodotti


Release

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by