Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

I want to change a variable with every iteration either randomly, how do i do that ?

1 view (last 30 days)
I want to change a variable with every iteration either by +1 or -1 randomly and keep the overall variable in between +5 to -5

Answers (1)

Ameer Hamza
Ameer Hamza on 22 Oct 2020
Something like this will work
x = 0;
for i = 1:100
x = min(max(x + 2*(rand()>0.5)-1, -5), 5)
end

This question is closed.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!