Statistica
MATLAB Answers
0 Domande
1 Risposta
RANK
268.162
of 300.369
REPUTAZIONE
0
CONTRIBUTI
0 Domande
1 Risposta
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
0
RANK
of 168.407
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Risposto
pseudo random numbers using the linear congruent method
a = 37; c = 91; m = 10000; x = zeros(1,10000); x(1) = 7; for i=2:numel(x) x(i) = mod(a*x(i-1)+c,m); end X = x(1:end-...
pseudo random numbers using the linear congruent method
a = 37; c = 91; m = 10000; x = zeros(1,10000); x(1) = 7; for i=2:numel(x) x(i) = mod(a*x(i-1)+c,m); end X = x(1:end-...
circa 3 anni fa | 0
