None.
Open in the MATLAB editor: g05tf_example
function g05tf_example fprintf('g05tf example results\n\n'); % Initialize the base generator to a repeatable sequence seed = [int64(1762543)]; genid = int64(1); subid = int64(1); [state, ifail] = g05kf( ... genid, subid, seed); % Number of variates n = int64(10); % Parameters a = 0.9999; % Generate variates from logarithmic distribution without reference vector mode = int64(3); r = [0]; [r, state, x, ifail] = g05tf( ... mode, n, a, r, state); disp('Variates'); disp(double(x));
g05tf example results Variates 6 23 2765 30 3 1 299 968 166 4