?? randmcg.m
字號:
function r = randmcg(p,q)
%RANDMCG Multiplicative congruential uniform random number generator.
% Based on the parameters used by MATLAB version 4.
% The statement
% r = randmcg
% generates a single uniformly distributed random number.
% The statement
% r = randmcg(m,n)
% generates an m-by-n random matrix.
% The statement
% clear randmcg
% will cause the generator to reinitialize itself.
% The function can not accept any other starting seed.
%
% See also RANDGUI, RANDSSP.
persistent m a c x
if isempty(x)
m = 2^31-1;
a = 7^5;
c = 0;
x = 1;
end
if nargin < 1, p = 1; end
if nargin < 2, q = p; end
r = zeros(p,q);
for k = 1:p*q
x = rem(a*x + c, m);
r(k) = x/m;
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -