Skip to content
Snippets Groups Projects
Verified Commit 600c2570 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Bug fix (remove undefined variable).

parent 8520d891
Branches
Tags
No related merge requests found
...@@ -48,5 +48,5 @@ switch cf ...@@ -48,5 +48,5 @@ switch cf
case 'WEEKLY' case 'WEEKLY'
f = 52; f = 52;
otherwise otherwise
error('Unimplemented frequency (%s is %s)', names{i}, cf) error('Unimplemented frequency (%s)', cf)
end end
...@@ -42,7 +42,7 @@ switch c ...@@ -42,7 +42,7 @@ switch c
case 'WEEKLY' case 'WEEKLY'
c = 52; c = 52;
otherwise otherwise
error('Unimplemented frequency (%s is %s)', names{i}, cf) error('Unimplemented frequency (%s)', cf)
end end
if strcmpi(firstorlast,'last') if strcmpi(firstorlast,'last')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment