Can anyone explain what's going on here? :)
julia> a = [1,2,3]
3-element Array{Int64,1}:
1
2
3
julia> b = [4,5,6]
3-element Array{Int64,1}:
4
5
6
julia> a / b
3x3 Array{Float64,2}:
0.0519481 0.0649351 0.0779221
0.103896 0.12987 0.155844
0.155844 0.194805 0.233766
I get the principle of how two vectors (3x) lead to a matrix (3x3) result -
but the actual values are a mystery?
