Mercurial > hg > octave-nkf
diff libinterp/corefcn/conv2.cc @ 17695:d6f4b01075e0
convn: give error for non-string shape argument.
* conv2.cc (convn): if value for the shape option was not a string,
convn was silently using the default value. Fixed to give an error
instead.
author | Carnë Draug <carandraug@octave.org> |
---|---|
date | Sat, 19 Oct 2013 04:15:25 +0100 |
parents | b81b9d079515 |
children | 92226d09f91a |
line wrap: on
line diff
--- a/libinterp/corefcn/conv2.cc +++ b/libinterp/corefcn/conv2.cc @@ -330,6 +330,11 @@ { if (args(2).is_string ()) shape = args(2).string_value (); + else + { + error ("convn: SHAPE must be a string"); + return retval; + } } if (shape == "full") @@ -397,4 +402,8 @@ /* FIXME: Need tests for convn in addition to conv2. +%!error convn () +%!error convn (1) +%!error <SHAPE type not valid> convn (1,2, "NOT_A_SHAPE") +%!error convn (rand (3), 1, 1) */