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