summaryrefslogtreecommitdiff
path: root/macros/fftfilt.sci
diff options
context:
space:
mode:
Diffstat (limited to 'macros/fftfilt.sci')
-rw-r--r--macros/fftfilt.sci9
1 files changed, 3 insertions, 6 deletions
diff --git a/macros/fftfilt.sci b/macros/fftfilt.sci
index 1fcd211..ab171ce 100644
--- a/macros/fftfilt.sci
+++ b/macros/fftfilt.sci
@@ -24,9 +24,9 @@ function y = fftfilt(b, x, varargin)
//
// Examples
// 1) Filtering a sine wave
- // x = sin(1:2000);
- // b = [1 1/2];
- // y = fftfilt(b,x);
+// x = sin(1:2000);
+// b = [1 1/2];
+// y = fftfilt(b,x);
// 2) Multiple filters (1,1/3) and (1/4,1/5);
// x = sin(1:2000);
// b = [1 1/4;1/3 1/5];
@@ -202,6 +202,3 @@ function y = fftfilt(b, x, varargin)
endfunction
-
-
-