difference between random number generators
显示 更早的评论
There're two different function in matlab which generate uniform or normal random varibles, rand and unifrnd, randn and normrnd. Can anyone tell me what the difference between rand and unifrnd?
回答(1 个)
the cyclist
2011-10-16
1 个投票
Both functions generate from a uniform distribution. rand() generates values on [0,1]; unifrnd() takes additional input arguments to specify the endpoints. You can read details with "doc rand" and "doc unifrnd".
类别
在 帮助中心 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!