Hello, everyone!
Have a question regarding hdf5 package in Julia, specifically the hdf5read function?
I see this in the main page of the github
A = collect(reshape(1:120, 15, 8))
h5write(“/tmp/test2.h5”, “mygroup2/A”, A)
data = h5read(“/tmp/test2.h5”, “mygroup2/A”, (2:3:15, 3:5))
I understand the data is stored in A, and that we are writing the data stored in A to the file called, “/tmp/test2.h5”, but what is the “mygroup2/A” pointing to? It is also there in the h5read function. Is it some kind of field that is already present in the data? Am used to using Matlab and when I use read functions, i generally just give the filename as input, so I am confused as to what the “mygroup2/A” input is doing exactly and what it is.
Thanks!
Ginny