From 5bbf592611ede34cab0a7d0d0cd475583db21cf3 Mon Sep 17 00:00:00 2001 From: SeaSponge <61109988+Squidwarder@users.noreply.github.com> Date: Fri, 10 Dec 2021 14:18:56 -0800 Subject: [PATCH] Fixed issue with the naming of the function result The return value is now renamed "Output". Should be working now. --- src/Filter/bandreject_filter.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Filter/bandreject_filter.m b/src/Filter/bandreject_filter.m index 8073a9e..9d089b9 100644 --- a/src/Filter/bandreject_filter.m +++ b/src/Filter/bandreject_filter.m @@ -1,4 +1,4 @@ -function output_y = bandreject_filter(Input, Fs, Low, High) +function Output = bandreject_filter(Input, Fs, Low, High) % A filter that lets through most frequencies unaltered % but attentuates the frequencies in the specified range to % very low levels