Rearrange Data depending on coordinates

Hello =)

I have some data - typeof(palier_2) Vector{Float64} (alias for Array{Float64, 1}) - that are associated to x, y and z coordinates :
typeof(coord_x) - Vector{Float64} (alias for Array{Float64, 1})
typeof(coord_y) - Vector{Float64} (alias for Array{Float64, 1})
typeof(coord_z) - Vector{Float64} (alias for Array{Float64, 1})

The values of the x, y and z coordinates vary between -1.0 and 1.0 (minimum = 0.064).

I would like to arrange the data to get something similar to :
a = rand(1:100, 10, 10, 10); which is an Array{Int64, 3} with 10x10x10 elements

I hope someone would be able to help me :smiley:
Thanks