Reads a full set of bytes (including the header).
(ByteBuffer buf)
| 49 | |
| 50 | /** Reads a full set of bytes (including the header). */ |
| 51 | public static MatFile readFull(ByteBuffer buf) throws IOException { |
| 52 | return readFull(buf, MatFileType.Regular); |
| 53 | } |
| 54 | |
| 55 | /** Reads a full set of bytes (including the header). */ |
| 56 | public static MatFile readFull(ByteBuffer buf, MatFileType type) throws IOException { |
nothing calls this directly
no test coverage detected