Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

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

1 visualizzazione (ultimi 30 giorni)
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

Risposte (1)

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

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by