Skip to content

Commit

Permalink
minor changes to code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
acp29 committed Jan 12, 2023
1 parent a5db286 commit afe34b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inst/octave/bootcoeff.m
Expand Up @@ -113,7 +113,7 @@
error ('bootcoeff: only supported by Octave')
end
statspackage = ismember ({info.Name}, 'statistics');
if (~ any (statspackage)) || (str2num(info(statspackage).Version(1:3)) < 1.5)
if (~ any (statspackage)) || (str2num (info (statspackage).Version(1:3)) < 1.5)
error ('bootcoeff: requires version >= 1.5 of the statistics package')
end

Expand Down
2 changes: 1 addition & 1 deletion inst/octave/bootemm.m
Expand Up @@ -115,7 +115,7 @@
error ('bootemm: only supported by Octave')
end
statspackage = ismember ({info.Name}, 'statistics');
if (~ any (statspackage)) || (str2num(info(statspackage).Version(1:3)) < 1.5)
if (~ any (statspackage)) || (str2num (info (statspackage).Version(1:3)) < 1.5)
error ('bootemm: requires version >= 1.5 of the statistics package')
end
if (ismember (dim, find (STATS.continuous)))
Expand Down

0 comments on commit afe34b7

Please sign in to comment.