8 lines
81 B
Matlab
8 lines
81 B
Matlab
n = 2000;
|
|
hold on
|
|
for k = 1:10
|
|
[t, x] = randomwalk(n);
|
|
plot(t, x)
|
|
end
|
|
hold off
|