This repository has been archived on 2021-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
scientificComputing/programming/exercises/randomwalkscript.m

8 lines
81 B
Matlab

n = 2000;
hold on
for k = 1:10
[t, x] = randomwalk(n);
plot(t, x)
end
hold off