changeset 29289:22215ea74b84

interpn.m: Remove unnecessary call to tolower(). * interpn.m: Remove unnecessary call to tolower().
author Rik <rik@octave.org>
date Wed, 13 Jan 2021 13:35:32 -0800
parents 512591ccb174
children d3c1e6f5ac85
files scripts/general/interpn.m
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/general/interpn.m	Tue Jan 12 17:15:53 2021 -0800
+++ b/scripts/general/interpn.m	Wed Jan 13 13:35:32 2021 -0800
@@ -111,7 +111,6 @@
     warning ("interpn: ignoring unsupported '*' flag to METHOD");
     method(1) = [];
   endif
-  method = tolower (method);
   method = validatestring (method,
                            {"nearest", "linear", "pchip", "cubic", "spline"},
                            "interpn");