random walk in matlab without the econometrics toolbox

2 views (last 30 days)
Hi,
I am looking for a way to create a random walk in matlab without having the financial toolbox

Accepted Answer

Shashank Prasanna
Shashank Prasanna on 2 May 2013
  6 Comments
Cedric
Cedric on 2 May 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 on 2 May 2013
I will try that, thank you very much for the support

Sign in to comment.

More Answers (0)

Categories

Find more on Time Series 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!