gpt4 book ai didi

julia - Julia 相当于 R 的副本和代表什么?

转载 作者:行者123 更新时间:2023-12-04 03:02:21 25 4
gpt4 key购买 nike

在 R replicate(n, expr)反复运行 expr表达式 n时间对比 rep(value, n)重复 value n次。

Julia 相当于 R 的什么replicaterep ?

例如。在 R
rep(1:3, 3) yield c(1:3, 1:3, 1:3)
replicate(3, runif(1))从均匀分布中生成 3 个随机数(即它运行了 runif(1) 3 次。

最佳答案

我可能会迟到,但这里有一些 R 和 Julia 代码,它们结合了评论中的建议:

# R version 3.5.1 of rep function
> rep(1:3, 3)
[1] 1 2 3 1 2 3 1 2 3

# Julia version 1.0.0 of repeat function
julia> repeat(1:3, 3)
9-element Array{Int64,1}:
1
2
3
1
2
3
1
2
3

# R version 3.5.1 for replicate function
> replicate(3, runif(1))
[1] 0.3849424 0.3277343 0.6021007

# Julia version 1.0.0 of an array comprehension
julia> [rand() for i in 1:3]
3-element Array{Float64,1}:
0.8076220876500786
0.9700908450487538
0.14006111319509862

关于julia - Julia 相当于 R 的副本和代表什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48006146/

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