Borrar filtros
Borrar filtros

How to Compile Simulink model which has fsolve function?

6 visualizaciones (últimos 30 días)
Amal Aljasmi
Amal Aljasmi el 24 de Feb. de 2022
Respondida: Dheeraj el 8 de En. de 2024
Hello everyone,
I am trying to compile a Simulink model with 'fsolve' fcn into a Python Package and since 'fsolve' is not supported for code-generation I can't use (Embedded) MATLAB Function block so I've put it in an Interpreted MATLAB Fcn block, as suggested here: https://www.mathworks.com/matlabcentral/answers/42811-fsolve-in-simulink-model#comment_1780841
But I cannot generate code from an Interpreted MATLAB Function block as was stated here too:
Is there any way to have fsolve in a Simulink model and be able to compile it?
Thanks in advance.

Respuestas (1)

Dheeraj
Dheeraj el 8 de En. de 2024
Hi,
I understand that you want to know any way to have fsolve in a Simulink model and be able to compile it.
fsolve is not supported for code generation and Interpreted MATLAB Function block for code generation in any release.
But you can use the following workarounds.
  1. Implementing a custom solver in Simulink using available blocks for code generation, you need to develop your own algorithm or use the available blocks to create custom solver that achieves the same purpose of “fsolve
  2. You could also use External Function Interface by writing the logic in any of the external languages compatible and use the external functional block from Simulink.
Choose among the alternatives depending upon the nature of your problem and requirements for code generation.
Hope this helps!

Categorías

Más información sobre Simulink Coder 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