HLIBpro
2.8.1
|
𝖧𝖫𝖨𝖡𝗉𝗋𝗈 supports several file formats for reading/writing coordinates, vectors, matrices and files, e.g. Matlab, Harwell/Boeing, MatrixMarket, SAMG, PLY, Gmsh, SurfaceMesh. However, not all features of each file format is fully implemented in 𝖧𝖫𝖨𝖡𝗉𝗋𝗈, e.g. only a single object may be written to Matlab files and only triangular grids are supported in corresponding file formats.
Format | Class | Remarks |
---|---|---|
HLIBpro | THLibCoordIO | only format with full support |
Matlab | TMatlabCoordIO | only dense matrix supported, no bounding box data |
MatrixMarket | TMMCoordIO | only array format supported, no bounding box data |
SAMG | TSAMGCoordIO | no bounding box data |
PLTMG | TPLTMGCoordIO | no bounding box data |
In case of the matrix based storage formats (Matlab and MatrixMarket), a matrix is expected where the number of columns corresponds to the dimension of the coordinates and the number of rows to the number of coordinates, respectively.
Only the HLIBpro format stores additional bounding box data for the coordinate set.
The following file formats are supported for reading and writing matrices:
Format | Class | Remarks |
---|---|---|
𝖧𝖫𝖨𝖡𝗉𝗋𝗈 format | THLibMatrixIO |
|
Matlab v5 | TMatlabMatrixIO |
|
Harwell/Boeing Harwell/Rutherford | THBMatrixIO |
|
MatrixMarket | TMMMatrixIO |
|
SAMG | TSAMGMatrixIO |
|
HDF5 | THDF5MatrixIO |
|
All storage classes implement the same basic interface defined by the functions:
Furthermore, a class for reading/writing matrices with file format autodetection is available (TAutoMatrixIO). In case of reading from a file, the auto detection works by actually looking at the stored data and hence, is very robust in choosing the correct file format. On the other hand, if data output is used, only the file name is used to decide the format. The following rules apply based on the file name extension:
Extension | File Format |
---|---|
hm | HLIBpro format |
mat, m | Matlab format |
hb, rb, rua, rsa, psa | Harwell/Boeing format |
mtx | MatrixMarket format |
amg | SAMG format |
hdf, h5 | HDF5 format |
The I/O functions from TAutoMatrixIO are also available in direct from via the functions:
If the file format supports named storage, e.g. Matlab, the corresponding matrix name may be provided by an additional argument:
For all other file formats, this parameter will be ignored.
Format | Class | Remarks |
---|---|---|
HLIBpro | THLibGridIO | same format as in HLIB |
PLY | TPlyGridIO | only ascii format and triangles supported; vertices may have normal directions |
surfacemesh | TSurfMeshGridIO | only 3d with triangles supported |
Gmsh v2 | TGMSHGridIO | |
auto detection | TAutoGridIO |
All grid IO classes support the interface
for reading and writing grid data.
Furthermore, the functional versions
are implemented which rely on TAutoGridIO.