Mercurial > hg > octave-nkf
diff scripts/general/accumarray.m @ 11589:b0084095098e
missing semicolons in script files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 20 Jan 2011 18:26:09 -0500 |
parents | c792872f8942 |
children | 0ce4a9cd6a7f |
line wrap: on
line diff
--- a/scripts/general/accumarray.m +++ b/scripts/general/accumarray.m @@ -139,7 +139,7 @@ elseif (length (sz) == 2) A = sparse (subs(:,1), subs(:,2), vals, sz(1), sz(2), mode); else - error ("accumarray: dimensions mismatch") + error ("accumarray: dimensions mismatch"); endif else @@ -153,7 +153,7 @@ sz = max (subs, [], 1); endif elseif (ndims != length (sz)) - error ("accumarray: dimensions mismatch") + error ("accumarray: dimensions mismatch"); endif ## Convert multidimensional subscripts.