Fast multi wave extract
BMangum
I want to find the indices where waveA > 10 && waveB < 5.
I can do this using loops but it is slow.
Is there a fast way to do this somehow using the extract command?
So far I have not been able to think of one.
A.G.
WaveMetrics, Inc.
December 10, 2012 at 04:24 pm - Permalink
December 10, 2012 at 04:53 pm - Permalink
make waveb = 127-p
Extract/INDX wavea, indexes, wavea[p] > 10 && waveb[p] < 5
print indexes
indexes[0]= {123,124,125,126,127}
December 11, 2012 at 05:16 am - Permalink