语法
- bool p(probability)
参数
- probability – 浮点型
true 的概率,介于 [0, 1] 之间。
返回值
true 或 false,具体取决于 probability 和当前形状的 seedian。 如果 probability < 0,将返回 false;如果 probability > 1,将返回 true。
说明
p 函数将返回 true,概率为 probability,或换言之,将返回 false,概率为 1 – probability。
相关内容
示例
p(0.5)
# result = true with probability 0.5
# result = false with probability 0.5
p(0.3)
# result = true with probability 0.3
# result = false with probability 0.7
p(1)
# result = true
p(0)
# result = false
p(2)
# result = true
p(-1)
# result = false
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。