Skip to content

Commit 431605c

Browse files
authored
Suppressed output of line 167
Under some conditions, calling rfcfilter (even while the function call is suppressed) would output 'test = 1'. Therefore, added semicolon to suppress output of line 167.
1 parent 9f7592e commit 431605c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wafo/cycles/rfcfilter.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
% Help text.
2626
% Revised by PJ 12-Jan-2000
2727
% updated for WAFO
28-
% Created by PJ (Pär Johannesson) 1999
28+
% Created by PJ (Pär Johannesson) 1999
2929

3030

3131
% Check input and output
@@ -164,7 +164,7 @@
164164
yj = y(j,2);
165165
end
166166
if def == 0
167-
test = (abs(y0-yj) > h)
167+
test = (abs(y0-yj) > h);
168168
else % def == 1
169169
test = (abs(y0-yj) >= h);
170170
end

0 commit comments

Comments
 (0)