When running cpp file in matlab, there is a problem of calling mex in error, how to solve it
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens

0 commentaires
Réponses (1)
Shreeya
le 3 Juil 2024
Modifié(e) : Shreeya
le 3 Juil 2024
Hey
The error code in the output is C3861. This error code suggests that an identifier is missing. You can start by looking if the appropriate headers are declared in the files. I'm also linking the MS documentation of this error code if the suggested solution does not resolve the issue:
You can also have a look at this answer: https://www.mathworks.com/matlabcentral/answers/601660-mex-error-c3861-mxgetdoubles-cannot-find-the-identifier-mxgetuint8s-cannot-find-the-identif
The answer in this link suggests that certain functions require a specific MATLAB version as a flag.
Also have a look at the documentation of mxGetPtr: https://www.mathworks.com/help/matlab/apiref/mxgetpr.html
Looks like this function is depreciated, updating the code might help too
Let me know if this resolves the problem!
0 commentaires
Voir également
Catégories
En savoir plus sur Write C Functions Callable from MATLAB (MEX Files) dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!