Skip to content

Instantly share code, notes, and snippets.

View tcibinan's full-sized avatar

Andrei Tcibin tcibinan

View GitHub Profile
@tcibinan
tcibinan / generator.m
Last active September 28, 2017 11:32
Generate random values from 0 to 1
function generator()
m = 2^31 - 1;
a = 630360016;
n = 1001;
count = 1000;
y = zeros(count, 1);
ec = zeros(count, 1);
ec(1) = 34238443;
for i = 2:1:n