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.
我正在尝试从已知数据集(n=35)中随机选择 6 个样本 10,000 次。我觉得这是一个基本的代码,但我找不到它。
有什么建议么?
在 iOS 中,您可以这样做:
#include <stdlib.h> - (id)randomElement:(NSArray *)array { NSInteger index = arc4random() % array.count; return [array objectAtIndex:index]; }
arc4random 承诺伪随机数的均匀分布。这也可以做成数组删除参数的类别方法。