Declare variables from Matlab function workspace to Simulink worskpace
Show older comments
Hello,
I have a MATLAB script that call a Matlan function.
In this Matlab function, I compute some matrix and then I run a Simulink Simulation.
Obvioulsy, the variable computed inside the function are indipendent from the base workspace and for this reason Simulink model "don't see" these matrix.
How is possible to calculate the matrix inside this Matlab function and then "send" it into Simulink model?
Accepted Answer
More Answers (1)
Walter Roberson
on 21 Sep 2017
0 votes
The From Workspace block typically defaults to getting variables from the caller (that is, from the executing function), so just make sure your From Workspace block is not configured as extracting the data from the base workspace. You can configure To Workspace blocks to write to caller.
Categories
Find more on Workspace Variables and MAT Files in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!