Filter löschen
Filter löschen

Convert Simulink model into MATLAB algorithm

2 Ansichten (letzte 30 Tage)
Tanusree
Tanusree am 31 Jan. 2024
Beantwortet: T.Nikhil kumar am 13 Feb. 2024
How can we get MATLAB code for Simulink model? How to convert the .slx file into .mat file?

Antworten (1)

T.Nikhil kumar
T.Nikhil kumar am 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!

Kategorien

Mehr zu Modeling finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by