diff 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
line wrap: on
line diff
--- a/scripts/statistics/tests/z_test.m	Tue Aug 20 11:31:58 2013 -0700
+++ b/scripts/statistics/tests/z_test.m	Tue Aug 20 11:42:23 2013 -0700
@@ -80,7 +80,7 @@
   if (nargout == 0)
     s = ["Z-test of mean(x) == %g against mean(x) %s %g,\n", ...
          "with known var(x) == %g:\n",                       ...
-         "  pval = %g\n");
+         "  pval = %g\n"];
     printf (s, m, alt, m, v, pval);
   endif