| Sleipnir
   
    | 
Mat2Txt converts a binary full matrix (Sleipnir::CFullMatrix) into a human-readable text format.
Mat2Txt -i <matrix.bin> -o <matrix.txt>
Output to matrix.txt a tab-delimited text representation of the full floating point matrix stored in binary format in matrix.bin.
package "Mat2Txt"
version "1.0"
purpose "Text/binary matrix file interconversion"
section "Main"
option  "input"         i   "Input matrix file"
                            string  typestr="filename"
option  "output"        o   "Output matrix file"
                            string  typestr="filename"
section "Optional"
option  "verbosity"     v   "Message verbosity"
                            int default="5"
| Flag | Default | Type | Description | 
|---|---|---|---|
| -i | stdin | Binary matrix file | Binary full matrix (Sleipnir::CFullMatrix) stored by another tool (e.g. Hubber). | 
| -o | stdout | Text matrix file | Tab-delimited textual representation of the input matrix. | 
 1.7.6.1
 1.7.6.1