To make, 2d array with list comprehesion, i write this:
array = [f(i) for in 1:length]
at this, function f returns 1-d list. But at the result as nested array.... How can i create 2d array with list comprehension?
The example of 2d dimension is like this:
julia> A
2×3 Array{Float64,2}:
0.0194681 0.195811 0.150168
0.398199 0.544672 0.942663