Mercurial > hg > octave-lyh
diff scripts/polynomial/conv.m @ 14352:3002986df93c
Fix typo in %!test in changeset 12c70d00c04e
* conv.m: Add missing ')' to %!test code
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Thu, 09 Feb 2012 12:39:55 -0800 |
parents | 12c70d00c04e |
children | f3d52523cde1 |
line wrap: on
line diff
--- a/scripts/polynomial/conv.m +++ b/scripts/polynomial/conv.m @@ -134,7 +134,7 @@ %!assert (conv (b,a,"same"), [28, 34, 40]); %!assert (conv (a,b,"valid"), [10, 16, 22, 28, 34, 40, 46, 52]); -%!assert (conv (b,a,"valid"), zeros (1,0); +%!assert (conv (b,a,"valid"), zeros (1,0)); %% Test input validation