mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m-thesis-introduction.git
synced 2024-11-13 10:03:32 +01:00
Simu: stray parameter removed
This commit is contained in:
parent
5e4cb0ea83
commit
6e059a5db6
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ def quantise(signal, resolution, bias=0):
|
||||||
|
|
||||||
return np.round(signal / resolution - bias) * resolution
|
return np.round(signal / resolution - bias) * resolution
|
||||||
|
|
||||||
def resample(signal, signal_fs, sample_frequency = 1, periodic=True):
|
def resample(signal, signal_fs, sample_frequency = 1):
|
||||||
"""
|
"""
|
||||||
Resample signal (sampled at signal_fs) to sample_frequency
|
Resample signal (sampled at signal_fs) to sample_frequency
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue