How to save the value of a variable inside a for loop in the MATLAb workspcae in each iteration (real-time)
9 views (last 30 days)
Show older comments
Hi,
I have a simple for loop here and I would like to save the value of variable "a" in each iteration at the MATLAb workspcae. Becaseu I need to read that variable from workspcae simoultaneously and use it in Simulink. I do not need that value after completing the for loop (I could save it in a list), I need that value in real-time (once it gets updated) becaseu it will be used in a Simulink file as an input in real-time.
for i=1:10
a=i;
end
0 Comments
Answers (2)
Souvik Das
on 31 Jan 2023
'global' or 'persistent' might satisfy your usecase. Attached below are the documentations for both:
Roya Salehzadeh
on 9 Feb 2023
1 Comment
KONSTANTINOS
on 11 Jun 2024
Hello,
could you provide me some more information about the solution you followed?
thanks in advance
See Also
Categories
Find more on Target Computer Setup 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!