我想使用reshape
函数在 Julia 中重塑数组,但新数组的形状本身存储为一维数组。reshape
接受元组作为参数,而不是一维数组。
例如,我希望能够做到这一点:
reshape([1 2 3 ; 4 5 6],(3,2))
但使用[3,2]
而不是(3,2)
作为 shape 参数的输入。将数组[3,2]
转换为元组(3,2)
似乎是显而易见的事情,但如果无法做到这一点,也许我需要编写另一个reshape
函数?
任何建议不胜感激。
你可以拼接数组:
julia> reshape([1 2 3 ; 4 5 6], [3,2]...)
3×2 Array{Int64,2}:
1 5
4 3
2 6
function array2tuple(a::Array)
(a...,)
end