Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要随机数生成器。我的函数必须输入数字来生成输出的长度。
我必须用 ST(plc 驱动程序的语言)编写它。在这种语言中,我没有 srand() 或 rand() 函数,所以我必须编写它。
有人帮我吗?
如果您只需要用于统计模拟的伪随机数或类似的东西,请尝试使用线性同余生成器或带进位乘法生成器。不要将这类随机数生成器用于任何对安全敏感的事情,例如生成密码或加密密钥。