Borrar filtros
Borrar filtros

How Can I Run a Mex file in Simulink

4 visualizaciones (últimos 30 días)
DONGHUN LEE
DONGHUN LEE el 14 de Sept. de 2020
Editada: Fayez Alruwaili el 23 de Mzo. de 2021
On the script, the mex.file that are working wel but,l
Is there a solution for not recognizing the mex file in the syntax using the matlabfunction block on Simulink?

Respuestas (1)

Monisha Nalluru
Monisha Nalluru el 17 de Sept. de 2020
Editada: Monisha Nalluru el 17 de Sept. de 2020
In MATLAB function block the compiler expects the MATLAB code, but when it comes to mexfile, finds the code in binary mex file, which it cannot handle.
So add the below code in MATLAB function block bbefore calling mex file
coder.extrinsic('mex_filename');
If you declare it extrinsic, the compiler never tries to compile mexfile, just sets up a call to it.
  1 comentario
Fayez Alruwaili
Fayez Alruwaili el 23 de Mzo. de 2021
Editada: Fayez Alruwaili el 23 de Mzo. de 2021
This is very slow, is there any alternative way doing it?
Thanks

Iniciar sesión para comentar.

Categorías

Más información sobre Write C Functions Callable from MATLAB (MEX Files) en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by