simVertToHoriz
simVertToHoriz(
t_inputFileName
t_outputFileName
)
=> t / nil
Description
Reads in the inputFileName file, converts names in vertical table headers to horizontal, and copies the rest of the file.
For example, if the input lines in the t_inputFileName file are as follows:
N N
4N4
234
6 7
they are printed in the t_outputFileName output file as shown below:
N 4 2 6
| N 3 |
N 4 4 7
The function is defined in /bin/si and also in the Cadence graphics program. You cannot modify this function.
Arguments
Value Returned
Examples
simVertToHoriz( "simout2.tmp" "simout.tmp" )
Related Topics
Return to top