예제 #1
0
def spectra (readings):
  "Parse + calculate the power spectrum for every reading in a list"
  return [brainlib.pSpectrum(parse_raw_values(r)) for r in readings]
예제 #2
0
def fft_power_spectrum(reading):
    '''Make the reading power spectrum. Put a wrapper here to make the data transformation clear.'''
    return([brainlib.pSpectrum(reading)])