]> gitweb.michael.orlitzky.com - octave.git/blobdiff - optimization/test_functions/wood1.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / optimization / test_functions / wood1.m
index c34de26a9dfe738f59f595b5a5f3731cef472f32..c0bfa201df4edded6be7e3e21c0598d523dd8056 100644 (file)
@@ -1,9 +1,9 @@
 function f = wood1(x)
-  ##
-  ## A version of the Wood function which takes a column 4-vector
-  ## instead of four distinct arguments. See wood.m for more
-  ## information.
-  ##
+  %
+  % A version of the Wood function which takes a column 4-vector
+  % instead of four distinct arguments. See wood.m for more
+  % information.
+  %
   if (length(x) == 4)
     f = wood(x(1), x(2), x(3), x(4));
   else