随机数生成器SwiftRandom.zip

时间:2022-08-05 23:44:12
【文件属性】:

文件名称:随机数生成器SwiftRandom.zip

文件大小:15KB

文件格式:ZIP

更新时间:2022-08-05 23:44:12

开源项目

SwiftRandom 是一组函数集合,可以从不同的分布生成伪随机变量。使用示例://Single pseudorandom normal variable //with mean 0 and standard deviation 1 let x = SwiftRandom.randomNormal(mean: 0, standardDeviation: 1)! //Array of pseudorandom independent normal variables  //with mean 0 and standard deviation 1 and length 10 let sample = SwiftRandom.randomNormalArray(mean: 0, standardDeviation: 1, sampleLength: 10)! //Sampling from array: //with replacement let numbers = [10, 11, 45, 1, 0, 4] let bootstrapSample = SwiftRandom.samplingWithReplacementFromArray(numbers, sampleLength: 10)! //without replacement let names = ["John", "Bob", "Anna", "Alice", "Chris", "Luke"] let usersOrder = SwiftRandom.samplingWithoutReplacementFromArray(names, sampleLength: 4)! 标签:SwiftRandom


【文件预览】:
SORandom-master
----SORandom.xcodeproj()
--------project.xcworkspace()
--------project.pbxproj(26KB)
--------xcshareddata()
----LICENSE(1KB)
----SORandomTests()
--------SORandomTests.swift(849B)
--------Info.plist(733B)
----.gitignore(227B)
----SORandom.podspec(784B)
----README.md(3KB)
----SORandom()
--------SORandom.h(1KB)
--------Info.plist(806B)
--------SORandom.swift(20KB)

网友评论