random walk in matlab without the econometrics toolbox
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I am looking for a way to create a random walk in matlab without having the financial toolbox
0 commentaires
Réponse acceptée
Shashank Prasanna
le 2 Mai 2013
6 commentaires
Cedric
le 2 Mai 2013
n = 200 ; m = 20 ;
figure ; hold on ;
for k = 1 : m
plot(cumsum((rand(1, n) > 0.5) - 0.5), 'Color', rand(1, 3)) ;
end
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Random Number Generation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!