Hello,
I am trying to resync my traces. This is working just fine when using the captured traces and using Resync_SAD.
I am now trying to resync this synced traces on specific locations with a second Resync_SAD.
Therefore I slice my waves into 200 pieces and put them into an array. Like this:
import numpy as np
i = 0
j = 5
tempTraces_split = np.empty(len(new_proj.waves[i]), dtype=object)
tempTraces_split[i] = np.array_split(new_proj.waves[i],200)
tempTraces_split[j] = np.array_split(new_proj.waves[j],200)
Now I want to Resync_SAD only the 3rd piece.
My reference wave is wave[0][3]
My to_sync wave is wave[5][3]
Because the resync script needs a trace as input and not a wave this is not working.
How can I save the waves as individual traces as a new project?
Or is there another way to do this?
The splitted wave at position [3] looks like this: