如果在Julia中有F
数组,如下所示
julia> F
5-element Array{Any,1}:
6
28
30
34
49
我想做到这一点
F
1-element Array{Any,1}:
Any[6, 28, 30, 34, 49]
使用此代码
F[1]=vcat(F[1],F[2:end])
while true
k=2;
if length(F)==1
break;
end
filter!(x->x≠F[k],F)
end
有效。你能帮我吗?可以不使用一段时间吗? 非常感谢