How to load matrix variables as constant on Simulink?
51 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am trying to load matrix variables on simulink as constant value from '.mat' file. Is it possible to load MATLAB variables on Simulink and use it as constant block value? All variables are N-d array. I found that there are several ways to load a variable on Simulink such as "From File Block" or "Input Port", but It did not work for my project.
0 Kommentare
Akzeptierte Antwort
Jonas
am 26 Aug. 2021
Load the .mat file into the Base Workspace of MATLAB, and in Simulink use the From Workspace block to enter the variable name there.
3 Kommentare
Jonas
am 30 Aug. 2021
Bearbeitet: Jonas
am 30 Aug. 2021
Ah, if your Matrix is just a time-invariant constant, you can use a 'Constant' block, and as a value enter the name of your matrix variable. The From Workspace block is to read and sample a variable from the base workspace, so indeed the purpose is different.
Like here, I have the variable 'decimation' in the base workspace and I can just use it in my model through a Constant block.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/724514/image.png)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Sources finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!