comparison scripts/signal/private/rectangle_lw.m @ 14844:5bc9b9cb4362

maint: Use Octave coding conventions for cuddled parenthesis in retval assignments. * hello.cc, Array-util.cc, CNDArray.cc, CSparse.cc, Sparse.cc, dNDArray.cc, dSparse.cc, fCNDArray.cc, fNDArray.cc, lo-specfun.cc, list_primes.m, rectangle_lw.m, sinetone.m, amd.cc, bsxfun.cc, ccolamd.cc, eigs.cc, lu.cc, qz.cc, spparms.cc, oct-stream.cc: Use Octave coding conventions for cuddled parenthesis in retval assignments.
author Rik <octave@nomad.inbox5.com>
date Fri, 06 Jul 2012 14:00:25 -0700
parents 72c96de7a403
children abf384f5d243
comparison
equal deleted inserted replaced
14843:7d4f87c75dbb 14844:5bc9b9cb4362
32 endif 32 endif
33 33
34 retval = zeros (n, 1); 34 retval = zeros (n, 1);
35 t = floor (1 / b); 35 t = floor (1 / b);
36 36
37 retval (1:t, 1) = ones (t, 1); 37 retval(1:t, 1) = ones (t, 1);
38 38
39 endfunction 39 endfunction