Reads the content of a MAT-file and returns the mapped content. This method calls read(file, new MatFileFilter(), MallocPolicy.MEMORY_MAPPED_FILE) . @param file a valid MAT-file file to be read @return the same as #getContent() @throws IOException
(File file)
| 241 | * if error occurs during file processing |
| 242 | */ |
| 243 | public synchronized Map<String, MLArray> read(File file) throws IOException { |
| 244 | return read(file, new MatFileFilter(), MEMORY_MAPPED_FILE); |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Reads the content of a MAT-file and returns the mapped content. |