Filter löschen
Filter löschen

random walk in matlab without the econometrics toolbox

2 Ansichten (letzte 30 Tage)
Locks
Locks am 2 Mai 2013
Hi,
I am looking for a way to create a random walk in matlab without having the financial toolbox

Akzeptierte Antwort

Shashank Prasanna
Shashank Prasanna am 2 Mai 2013
  6 Kommentare
Cedric
Cedric am 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
Locks
Locks am 2 Mai 2013
I will try that, thank you very much for the support

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Time Series finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by