]> gitweb.michael.orlitzky.com - octave.git/blobdiff - optimization/test_functions/trigonometric1.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / optimization / test_functions / trigonometric1.m
index f7fd625e7bd9297b9fd2e7310a9f0a8b80805889..e6725ff4c9a808be09dd8186f10597f6e6b3b7a3 100644 (file)
@@ -1,11 +1,11 @@
 function f = trigonometric1(x)
-  ##
-  ## The trigonometric function. See More, Garbow, and Hillstrom,
-  ## function #26.
-  ##
-  ## This function has a minimum with f(x) == 0. The suggested
-  ## starting point is x0=(1/n, 1/n,...).
-  ##
+  %
+  % The trigonometric function. See More, Garbow, and Hillstrom,
+  % function #26.
+  %
+  % This function has a minimum with f(x) == 0. The suggested
+  % starting point is x0=(1/n, 1/n,...).
+  %
   n = length(x);
   f = 0;