Mercurial > hg > octave-nkf
comparison scripts/general/accumarray.m @ 15202:f3b5cadfd6d5
fix missing semicolons in various .m files
* playaudio.m, accumarray.m, accumdim.m, bicubic.m, narginchk.m,
nargoutchk.m, nthargout.m, image.m, pkg.m, colorbar.m, hdl2struct.m,
legend.m, plotyy.m, private/__go_draw_axes__.m,
private/__print_parse_opts__.m, shrinkfaces.m, pchip.m, polyval.m,
rundemos.m: Fix lines with missing semicolons.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sun, 19 Aug 2012 10:50:40 -0400 |
parents | 5d3a684236b0 |
children | 7eff3032d144 |
comparison
equal
deleted
inserted
replaced
15201:efac5593b1de | 15202:f3b5cadfd6d5 |
---|---|
148 endif | 148 endif |
149 | 149 |
150 else | 150 else |
151 ndims = columns (subs); | 151 ndims = columns (subs); |
152 if (lenvals > 1 && lenvals != rows (subs)) | 152 if (lenvals > 1 && lenvals != rows (subs)) |
153 error ("accumarray: dimension mismatch") | 153 error ("accumarray: dimension mismatch"); |
154 endif | 154 endif |
155 endif | 155 endif |
156 | 156 |
157 if (isempty (fillval)) | 157 if (isempty (fillval)) |
158 fillval = 0; | 158 fillval = 0; |