changeset 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 5ff843d739fc
children 3a9efb68272d
files scripts/statistics/tests/z_test.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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