Skip to content

Commit

Permalink
remove obsolete comment in YIN
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Lostanlen committed Aug 22, 2019
1 parent 4138ea2 commit 489fd73
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion librosa/core/pitch.py
Expand Up @@ -457,7 +457,6 @@ def yin(y, sr=22050, frame_length=2048, hop_length=None, fmin=40, fmax=None,
yin_frames = yin_numerator / yin_denominator

# Parabolic interpolation.
# NB: perhaps these operations can be fused to alleviate memory allocation?
if interpolate:
parabola_a =\
(yin_frames[:-2, :]+yin_frames[2:, :]-2*yin_frames[1:-1, :]) / 2
Expand Down

0 comments on commit 489fd73

Please sign in to comment.