⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 randgui.m

📁 《MATLAB数值计算》最新版本的全部代码Numerical.Computing.With.MATLAB
💻 M
字号:
function randgui(randfun)
%RANDGUI   Monte Carlo computation of pi.
%  Generate random points in a cube and count the portion that are
%  also in the inscribed sphere.  The ratio of the volume of the
%  sphere to the volume of the cube is pi/6.  
%
%  RANDGUI with no arguments or RANDGUI('rand') uses MATLAB's
%  built-in random number generator.  RANDGUI('randtx') and
%  RANDGUI('randutx') use different Lehmer congruential generators,
%  one with good parameters and one with the parameters used years
%  ago by IBM's "RANDU" function.
%
% See also RANDTX, RANDUTX.

nmax = 10000;  % Number of samples
m = 25;        % Samples per plot

if nargin < 1, randfun = 'rand'; end

shg
clf reset
set(gcf,'doublebuffer','on','pos',[232 100 560 580],'toolbar','none', ...
   'numbertitle','off','menubar','none','name','Randgui')
ax1 = axes('pos',[.130 .360 .775 .620],'view',[-37.5 30],  ...
   'xlim',[-1 1],'ylim',[-1 1],'zlim',[-1 1],'box','on', ...
   'plotboxaspectratiomode','manual');
h1 = line(NaN,NaN,NaN,'color','red','linestyle','none', ...
   'marker','.','erasemode','none');
h2 = line(NaN,NaN,NaN,'color','blue','linestyle','none', ...
   'marker','.','erasemode','none');
ax2 = axes('pos',[.130 .110 .775 .200],'xlim',[0 nmax],'ylim',[3 3.3]);
h3 = line(NaN,NaN,'color',[0 2/3 0],'linestyle','-','erasemode','none');
h4 = text(.8*nmax,3.25,'','fontsize',14);
line([0 nmax],[pi pi],'color','black','linestyle',':');
line([0 nmax],[3.3 3.3],'color','black','linestyle','-');
stop = uicontrol('units','norm','pos',[.02 .01 .10 .05], ...
   'style','toggle','string','stop','value',0);
close = uicontrol('units','norm','pos',[.14 .01 .10 .05],'string','close', ...
   'callback','close(gcf)','vis','off');

n = 0;
s = 0;
while n < nmax & get(stop,'value') == 0
   X = 2*feval(randfun,3,m)-1;
   r = sum(X.^2);
   k = (r <= 1);
   pie = 6*(s+cumsum(k))./(n+1:n+m);
   set(h1,'xdata',X(1,k),'ydata',X(2,k),'zdata',X(3,k));
   set(h2,'xdata',X(1,~k),'ydata',X(2,~k),'zdata',X(3,~k));
   set(h3,'xdata',n+1:n+m,'ydata',pie);
   set(h4,'string',sprintf('%7.4f',pie(m)))
   drawnow
   n = n + m;
   s = s + sum(k);
end

set(stop,'style','push','userdata',randfun,'string','repeat', ...
   'callback','randgui(get(gcbo,''userdata''))');
set(close,'vis','on')

⌨️ 快捷键说明

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