<% if (page.mathjax || page.math) { %> <% } %> smileless-L的博客
×

Tags

探索与 "LCG" 相关的所有文章

LCG

共有 1 篇文章
LCG(线性同余生成器)简记

MathJax = { tex: { inlineMath: [['$', '$'], ['\\(', '\\)']], displayMath: [['$$', '$$'], ['\\[', '\\]']] }, svg: { fontCache: 'global' } }; LCG(线性同余生成器)简记 标签(空格分隔): LCG LCG(线性同余生成器)LCG属于PRNG(伪随机数生成器)和stream cipher(流密码)的一种,是一种产生伪随机数的方法。 $X_{n+1} =(a∗X_n +b) \ mod\ m$ 其...