Hi -
I have a chop with several channels and several samples for each channel.
Is there a way to take all channels of a chop but only get sample 2, for instance?
I know I can get only particular channels of a CHOP with a Select. And with a Shuffle there’s an option to “Use First Sample Only”, But If I wanted a specific (not just first) sample, is there a way to do that? I could gin something up with a couple different Shuffles, (Swap channels & samples → Select specific channel → Swap samples back to channels) but that seems hacky. Is there a more direct way to get there?
In python terms, I’ve got chop a with this format:
chop_a = {
‘x’: [0.5, 0.8, 0.2],
‘y’: [0.6, 0.7, 0.5],
}
I want to get only, say, the second sample in those channels, yielding:
chop_b = {
‘x’: [0.8],
‘y’:[0.7].
}
Doable? Thanks, y’all.