Skip to content

Commit 5e2457f

Browse files
committed
Update bootlm.m
1 parent cb0f1e0 commit 5e2457f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inst/bootlm.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1255,11 +1255,11 @@
12551255
switch (lower (METHOD))
12561256
case 'wild'
12571257
% Use the HC1 standard errors
1258-
SED = STATS.std_err
1258+
SED = STATS.std_err;
12591259
STATS = rmfield (STATS, 'std_err');
12601260
case {'bayes', 'bayesian'}
12611261
% Use the standard deviation of the posterior distribution
1262-
SED = std (BOOTSTAT, 0, 2)
1262+
SED = std (BOOTSTAT, 0, 2);
12631263
end
12641264
% We would like to estimate standard deviation of the difference for
12651265
% each comparison using the bootstrap standard error (rather than

0 commit comments

Comments
 (0)