Skip to content
View chasays's full-sized avatar
🎯
Focusing
🎯
Focusing

Organizations

@arealtester

Block or report chasays

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
chasays/README.md

Hi there 👋

Pinned Loading

  1. compute audio file THD+N value compute audio file THD+N value
    1
    # please refer https://gist.github.com/endolith/246092
    2
    
                  
    3
    from __future__ import division
    4
    import sys
    5
    from scipy.signal import blackmanharris
  2. compute coherence with wave compute coherence with wave
    1
    from scipy import signal
    2
    import matplotlib.pyplot as plt
    3
    import numpy as np
    4
    import scipy.io.wavfile as wav
    5