comparison scripts/statistics/tests/z_test_2.m @ 17245:7babcdb9bc13

Use ... instead of \ for line continuation marker. * plotimages.m, bsxfun.cc, cellfun.cc, __unimplemented__.m, importdata.m, textscan.m, edit.m, fsolve.m, sqp.m, __gnuplot_drawnow__.m, __marching_cube__.m, stemleaf.m, polyfit.m, z_test.m, z_test_2.m, test.m: Use ... instead of \ for line continuation marker.
author Stefan Mahr <dac922@gmx.de>
date Mon, 12 Aug 2013 17:36:54 +0200
parents 333243133364
children bc924baa2c4e
comparison
equal deleted inserted replaced
17244:9de751a10910 17245:7babcdb9bc13
76 else 76 else
77 error ("z_test_2: option %s not recognized", alt); 77 error ("z_test_2: option %s not recognized", alt);
78 endif 78 endif
79 79
80 if (nargout == 0) 80 if (nargout == 0)
81 s = ["Two-sample Z-test of mean(x) == mean(y) against ", \ 81 s = ["Two-sample Z-test of mean(x) == mean(y) against ", ...
82 "mean(x) %s mean(y),\n", \ 82 "mean(x) %s mean(y),\n", ...
83 "with known var(x) == %g and var(y) == %g:\n", \ 83 "with known var(x) == %g and var(y) == %g:\n", ...
84 " pval = %g\n"]; 84 " pval = %g\n"];
85 printf (s, alt, v_x, v_y, pval); 85 printf (s, alt, v_x, v_y, pval);
86 endif 86 endif
87 87
88 endfunction 88 endfunction