How can I get the variable from inside of the for loop and use it /display it after for loop?
Show older comments
Hi,
I created a for loop. Inside this for loop I calculated a variable. Unfortunately Matlab deletes the variable after the end of the for loop. How can I use the calculated variable outside of the for loop? Thanks!
1 Comment
Azzi Abdelmalek
on 26 Oct 2012
post your code
Accepted Answer
More Answers (1)
Sachin Ganjare
on 26 Oct 2012
0 votes
Declare that variable as global, so that matlab won't delete it.
4 Comments
Sachin Ganjare
on 26 Oct 2012
Refer below link:
Simon
on 26 Oct 2012
José-Luis
on 26 Oct 2012
No it's not. It's a bad idea. Don't use globals. Have the function return the variable instead.
Azzi Abdelmalek
on 26 Oct 2012
I don't agree with systematic, it's bad to use globals
Categories
Find more on Loops and Conditional Statements 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!