
Increment value and run for cells missing in R2021b
77 views (last 30 days)
Show older comments
Has the "Increment and run" feature for code in the editor been removed in 2021b? I understand that live scripts implement it but its clunky for what I want to do.
0 Comments
Answers (1)
Shanmukha Voggu
on 29 Oct 2021
Hi Chris,
You are correct that Increment Value and Run Section tool has been removed in R2021b, checkout release Notes
To increment a numeric value within a section, use controls in the Live Editor. For example, this code calculates the factorial of the variable x.
x = 5;
y = factorial(x)
To interactively change the value of x, in a live script, replace the value 5 with a numeric slider. By default, MATLAB reruns the current section when the value of the slider changes.

11 Comments
See Also
Categories
Find more on Live Scripts and Functions 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!