From f06d4884241f62f40dd2274c2ae609287e251f9a Mon Sep 17 00:00:00 2001 From: Robert Guggenberger Date: Wed, 6 Oct 2021 17:28:19 +0200 Subject: [PATCH] Update readme.md --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index f03f9d6..28ab04a 100644 --- a/readme.md +++ b/readme.md @@ -18,9 +18,9 @@ Artifacts can be _non-stationary_ and _non-sinusoidal_, but are required to be _ The following example creates a kernel for a _classical_ causal comb filte for an artifcat with a period of 10Hz and sampled at 1000Hz: ```{python} - kernel = create_kernel(freq=10, fs:1000, width:1, - left_mode:str='uniform', - right_mode:str='none') + kernel = create_kernel( + freq=10, fs=1000, width=1, left_mode="uniform", right_mode="none" + ) ``` or the superposition of moving averages (SMA) filter as discussed e.g. by [1],