Is it possible to pass an IOBuffer to MAT.jl?
This would be useful when storing data on services such as Amazon S3 with AWS.jl.
I tried the following code, but it did not work.
using AWS
using AWS.S3
env = AWSEnv(); bkt = "???"
file = S3.get_object(env, bkt, "testfile.mat").obj
#IOBuffer(data=Uint8[...], readable=true, writable=true, seekable=true, append=false, size=1040, maxsize=Inf, ptr=1041, mark=-1)
vars = matread(file)
# ERROR: `matread` has no method matching matread(::IOBuffer)
Is it possible to pass an IOBuffer to MAT.jl?
This would be useful when storing data on services such as Amazon S3 with AWS.jl.
I tried the following code, but it did not work.