comparison scripts/statistics/tests/z_test.m @ 17295:2946888dfa56

z_test.m: Fix typo in string concatenation. * scripts/statistics/tests/z_test.m: Replace ')' with ']' to end matrix string concatenation.
author Rik <rik@octave.org>
date Tue, 20 Aug 2013 11:42:23 -0700
parents bc924baa2c4e
children 1c89599167a6
comparison
equal deleted inserted replaced
17294:5ff843d739fc 17295:2946888dfa56
78 endif 78 endif
79 79
80 if (nargout == 0) 80 if (nargout == 0)
81 s = ["Z-test of mean(x) == %g against mean(x) %s %g,\n", ... 81 s = ["Z-test of mean(x) == %g against mean(x) %s %g,\n", ...
82 "with known var(x) == %g:\n", ... 82 "with known var(x) == %g:\n", ...
83 " pval = %g\n"); 83 " pval = %g\n"];
84 printf (s, m, alt, m, v, pval); 84 printf (s, m, alt, m, v, pval);
85 endif 85 endif
86 86
87 endfunction 87 endfunction