julia> convert(Float64,HH_baza[1,4])
ERROR: MethodError: convert has no method matching convert(::Type{Float64}, ::UTF8String)
This may have arisen from a call to the constructor Float64(…),
since type constructors fall back to convert methods.
Closest candidates are:
call{T}(::Type{T}, ::Any)
convert(::Type{Float64}, ::Int8)
convert(::Type{Float64}, ::Int16)
…
Paul
One problem is that you are using eltype instead of typeof.
A String is viewed as a collection of type Char, which is why you get that result from eltype(HH_baza[1,4])