You need to read the version in the documentation more carefully. If you look,
you'll see that the documentation doesn't use "load" in this case.
--Tim
On Sunday, August 17, 2014 12:41:01 AM paul analyst wrote:
> Sorry , but i cant ....
>
> julia> Ds=load("Dso2.jld")
> Dict{Union(ASCIIString,UTF8String),Any} with 1 entry:
> "Ds" =>
>
> julia> d=Ds[:,1]
> ERROR: no method size(Dict{Union(ASCIIString,UTF8String),Any}, Int64)
>
> julia> A=re
> read readall readavailable readbytes!
> readcsv readdlm
> read! readandwrite readbytes readchomp
> readdir readline
> julia> A=read(Ds)
> ERROR: no method read(Dict{Union(ASCIIString,UTF8String),Any})
>
> julia> A=read("Ds")
> ERROR: no method read(ASCIIString)
>
> julia> A=read(Ds,"Ds")
> ERROR: no method read(Dict{Union(ASCIIString,UTF8String),Any}, ASCIIString)
>
> Paul