I see no methods to write arrays with dimensions greater than 2 in IHDF5SimpleWriter
Is it possible to accomplish?
I see no methods to write arrays with dimensions greater than 2 in IHDF5SimpleWriter
Is it possible to accomplish?
Unfortunately, no. As its documentation states, an IHDF5SimpleWriter
“…contains only the basic methods.”
If you need to do this you'll need to use the non-simple writer for your data type, such as the IHDF5ByteWriter, and use one of the createMDArray
methods. Good luck!