execution order
20 views (last 30 days)
Show older comments
What is the easiest way to control execution order of your code?
i have a function that creates an array of numbers and then I have a for loop that needs to use some numbers from that array. but the for loop seesms to be executing first.
Accepted Answer
Jan
on 17 Nov 2011
Matlab executes the code line by line in serial order. Inside a line the commands are executed from left to right.
Callbacks and timer functions are processed, if the command prompt is reached, or if PAUSE or DRAWNOW trigger their execution.
I do not see any possibilities to influence the order of execution.
7 Comments
Jan
on 17 Nov 2011
@Jonathan: Exactly. Inside a line the precedence order rules, but for the same precedence the left operation is performed at first.
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!