Schroeder-Lab / Data

For pre-processing raw data (two-photon, ephys, bonsai, ...) and loading/saving data.
0 stars 3 forks source link

Function _gauss in preprocess_traces #33

Closed mariacozan closed 1 year ago

mariacozan commented 1 year ago

There is another function in preprocess traces called _gauss which only does not seem to be used anywhere. Please remove this if not needed anymore or move it to a different file.

The function:

def _gauss(x, A, mu, sigma):
    return A * np.exp(-((x - mu) ** 2) / (2.0 * sigma**2))