OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:iLow
(Results
1 - 2
of
2
) sorted by null
/cts/suite/audio_quality/test_description/processing/
check_spectrum_playback.py
41
iLow
= N * fLow / samplingRate + 1 # 1 for DC
42
if
iLow
> (N / 2 - 1):
43
iLow
= (N / 2 - 1)
47
print fLow,
iLow
, fHigh, iHigh, samplingRate
53
print "Phh", abs(Phh[
iLow
:iHigh])
54
spectrum = np.sqrt(abs(Phh[
iLow
:iHigh]))
check_spectrum.py
42
iLow
= N * fLow / samplingRate + 1 # 1 for DC
43
if
iLow
> (N / 2 - 1):
44
iLow
= (N / 2 - 1)
48
print fLow,
iLow
, fHigh, iHigh, samplingRate
57
print "Phh", abs(Phh[
iLow
:iHigh])
58
print "Pdd", abs(Pdd[
iLow
:iHigh])
59
amplitudeRatio = np.sqrt(abs(Pdd[
iLow
:iHigh]/Phh[
iLow
:iHigh]))
Completed in 231 milliseconds