The gto_new_line_on_new_x splits different rows with a new empty row.
For help type:
./gto_new_line_on_new_x -h
In the following subsections, we explain the input and output paramters.
The gto_new_line_on_new_x program needs two streams for the computation, namely the input and output standard. The input stream is a matrix file format with 3 columns.
The attribution is given according to:
Usage: ./gto_new_line_on_new_x [options] [[--] args]
or: ./gto_new_line_on_new_x [options]
It splits different rows with a new empty row.
-h, --help show this help message and exit
Basic options
< input Input file with 3 column matrix format (stdin)
> output Output file with 3 column matrix format (stdout)
Example: ./gto_new_line_on_new_x < input > output
An example of such an input file is:
1 2 2
1 2 2
4 4 1
10 12 2
15 15 1
45 47 3
45 47 3
45 47 3
45 47 3
55 55 1
The output of the gto_new_line_on_new_x program is a 3 column matrix, with an empty line between different rows.
Using the input above, an output example for this is the following:
1.000000 2.000000 2.000000
1.000000 2.000000 2.000000
4.000000 4.000000 1.000000
10.000000 12.000000 2.000000
15.000000 15.000000 1.000000
45.000000 47.000000 3.000000
45.000000 47.000000 3.000000
45.000000 47.000000 3.000000
45.000000 47.000000 3.000000
55.000000 55.000000 1.000000