julia> logspace(1,2,5)
┌ Warning: logspace(start, stop, n; base=10) is deprecated, use base .^ range(start, stop=stop, length=n) instead.
│ caller = top-level scope at none:0
└ @ Core none:0
5-element Array{Float64,1}:
10.0
17.78279410038923
31.622776601683793
56.23413251903491
100.0
julia> 10 .^ range(1,stop=2,length=5)
5-element Array{Float64,1}:
10.0
17.78279410038923
31.622776601683793
56.23413251903491
100.0