Azzera filtri
Azzera filtri

Convert Simulink model into MATLAB algorithm

2 visualizzazioni (ultimi 30 giorni)
Tanusree
Tanusree il 31 Gen 2024
Risposto: T.Nikhil kumar il 13 Feb 2024
How can we get MATLAB code for Simulink model? How to convert the .slx file into .mat file?

Risposte (1)

T.Nikhil kumar
T.Nikhil kumar il 13 Feb 2024
Hello Tanusree,
According to my knowledge, I do not think it is possible to get MATLAB code for a Simulink Model. Generating executable MATLAB code that replicates the functionality of a Simulink model is not straightforward due to the graphical nature of Simulink and the complex interactions between blocks.
The Simulink Coder can generate C/C++ code from Simulink Models. You can try using Simulink Coder if you want to execute your Simulink Model only via MATLAB. This would still require you to open Simulink and use Simulink coder to generate a ‘.exe’ executable file for the model.
You can then run the ‘.exe’ file using the ‘system’ command in command window. This will start the model and also capture the output data in a ‘.mat’ file . Both these files would be saved to your current folder.
% Sample usage of system command
system("Tracking.exe")
Refer to the following documentation about ‘system’ function:
Hope this helps!

Categorie

Scopri di più su Modeling in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by