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