gpt4 book ai didi

random - 如何从 Julia 中的元素列表中随机选择 n 个唯一元素

转载 作者:行者123 更新时间:2023-12-04 12:20:07 32 4
gpt4 key购买 nike

我想从数字列表中生成 n 个唯一元素。我遇到了this答案但这只给了我一个元素。我想要列表中的 n 个不同元素。
我该怎么做?
我试过使用 rand(list,n)但这有时会给我来自 list 的重复元素所以这是行不通的。

最佳答案

试试 Distributions.sample StatsBase.sample :

jl> using StatsBase: sample

jl> x = rand(10);

jl> sample(x, 3; replace=false)
3-element Vector{Float64}:
0.6816165016249632
0.8500982926818003
0.6518188633423712

关于random - 如何从 Julia 中的元素列表中随机选择 n 个唯一元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69626002/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com