File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed
Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 3232"""
3333from padasip .detection .le import learning_entropy
3434from padasip .detection .elbnd import ELBND
35- from padasip .detection .ese import ESE
35+
36+
37+ def ese_not_imported (* args , ** kwargs ):
38+ raise ImportError ('You have to install scipy package in order to use ESE.' )
39+
40+ try :
41+ from padasip .detection .ese import ESE
42+ except ImportError :
43+ ESE = ese_not_imported
3644
Original file line number Diff line number Diff line change 7474"""
7575import numpy as np
7676from scipy .stats import genpareto
77- import math
7877
7978def pot (data , method ):
8079 """
Original file line number Diff line number Diff line change 11"""
2- .. versionadded::
3- .. versionchanged::
2+ .. versionadded:: 1.2.0
43
54The online-centered normalized least-mean-squares (OCNLMS) adaptive filter
65(proposed in https://doi.org/10.14311/nnw.2021.31.019)
You can’t perform that action at this time.
0 commit comments