gpt4 book ai didi

julia - 在 JULIA 中转换数组中的元组向量

转载 作者:行者123 更新时间:2023-12-03 18:43:03 24 4
gpt4 key购买 nike

我对 Julia 很陌生,我正在尝试转换数组中的元组向量。
这是一个例子

using Statistics
a = randn((10, 100))
q = (0.05, 0.95)
conf_intervals = [quantile(a[i,:], q) for i in 1:10]
conf_intervals10-element Vector{Tuple{Float64, Float64}} .
预期结果应该是 10×2 Matrix{Float64}我试过泼 conf_intervals[conf_intervals...]但向量不会改变。
非常感谢

最佳答案

您需要使用 collect将元组转换为向量,然后您可以组合它们:

julia> hcat(collect.(conf_intervals)...)
2×10 Matrix{Float64}:
-1.59757 -2.10057 -1.4437 -1.32868 -1.10686 -1.41256 -1.5696 -1.67288 -1.51947 -1.72257
1.24604 1.61692 1.77684 1.3599 1.90853 1.30831 1.10667 1.58356 1.56811 1.70685
如果需要转置结果,请添加撇号 ' end 命令的结尾

关于julia - 在 JULIA 中转换数组中的元组向量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67137544/

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