The goal is to extract the x and y vectors from an srrWave. In a first step from a single design point, but in a later stage ideally from a parameter sweep simulation. The current approach to get the x and y vectors from a waveform from a node voltage of a transient simulation is shown below. The code is written in Python. Python-Skill Bridge is used to forward the OCEAN commands. The function extracting the x and y vectors:
Getting the waveform data from the simulation results and calling wave2vec:
The data variable does hold the correct result, i.e. the node votlages in an srrWave object (from a similar post), and the code runs without errors. However, the return values from `wave2vec` are not as expected: x returns [1.0] and y returns [<remote object0x...>].
How can I change the method above to correctly access the x and y vectors of an srrWave in case of a single design point and, if possible, in case of a parameter sweep simulation?