brownian.m

来自「有趣的可视的数值方法 出自网站http://www.mathworks.com」· M 代码 · 共 19 行

M
19
字号
% BROWNIAN   Two-dimensional random walk.%   What is the expansion rate of the cloud of particles?shgclfset(gcf,'doublebuffer','on')delta = .002;x = zeros(100,2);h = plot(x(:,1),x(:,2),'.');axis([-1 1 -1 1])axis squarestop = uicontrol('style','toggle','string','stop');while get(stop,'value') == 0   x = x + delta*randn(size(x));   set(h,'xdata',x(:,1),'ydata',x(:,2))   drawnowendset(stop,'string','close','value',0,'callback','close(gcf)')

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?