Hi All,
I am trying to export a series of nested parametric sweeps in Cadence. Using ocnPrint, the data is separated into sections according to the values of the outer sweep variables, but I would like to have a "flattened" output, where each sweep vector is in an adjacent column, rather than in a new subsection.
for example it is currently doing:
VTD_n = -3.000e-01
VTD_p -3.000e-01 0.000e+00 3.000e-01
0.0000e+00 9.9708e-01 9.9638e-01 9.9400e-01
1.0000e-02 9.9638e-01 9.9548e-01 9.9235e-01
2.0000e-02 9.9561e-01 9.9448e-01 9.9042e-01
.....
VTD_n = 0.000e+00
VTD_p -3.000e-01 0.000e+00 3.000e-01
0.0000e+00 1.0000e+00 1.0000e+00 1.0000e+00
1.0000e-02 1.0000e+00 1.0000e+00 9.9999e-01
2.0000e-02 1.0000e+00 1.0000e+00 9.9999e-01
and I would like it to do:
VTD_n -3.000e-01 -3.000e-01 -3.000e-01 0.000e+00 0.000e+00 0.000e+00
VTD_p -3.000e-01 0.000e+00 3.000e-01 -3.000e-01 0.000e+00 3.000e-01
0.0000e+00 1.0000e+00 1.0000e+00 1.0000e+00 1.0000e+00 1.0000e+00 9.9999e-01
1.0000e-02 1.0000e+00 1.0000e+00 9.9999e-01 1.0000e+00 1.0000e+00 9.9999e-01
2.0000e-02 1.0000e+00 1.0000e+00 9.9999e-01 1.0000e+00 1.0000e+00 9.9999e-01