From c76dccb5cde4138a141be778f83cd052d49523b0 Mon Sep 17 00:00:00 2001 From: Kamel Lounis <120982393+kalounis@users.noreply.github.com> Date: Tue, 19 Dec 2023 22:14:50 +0100 Subject: [PATCH] delete print in data_preprocessing function Co-authored-by: Gui-FernandesBR --- rocketpy/mathutils/function.py | 1 - 1 file changed, 1 deletion(-) diff --git a/rocketpy/mathutils/function.py b/rocketpy/mathutils/function.py index 84936c84b..914841af3 100644 --- a/rocketpy/mathutils/function.py +++ b/rocketpy/mathutils/function.py @@ -1107,7 +1107,6 @@ def low_pass_filter(self, alpha): Function The function with the incoming source filtered """ - print(self.source) filtered_signal = np.zeros_like(self.source) filtered_signal[0] = self.source[0]