X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=optimization%2Ftest_functions%2Fextended_powell_hessian1.m;h=4d5f50f96a4544c356368a9b73e5559757a3567d;hb=c3e7feb9a20fe34085814a2d32a9878e0b069ec6;hp=972e690da5d83c0d667fff69a2169b3ade8b12bf;hpb=30c26967dbc89131a09979fa8937eac0ef7a73b4;p=octave.git diff --git a/optimization/test_functions/extended_powell_hessian1.m b/optimization/test_functions/extended_powell_hessian1.m index 972e690..4d5f50f 100644 --- a/optimization/test_functions/extended_powell_hessian1.m +++ b/optimization/test_functions/extended_powell_hessian1.m @@ -1,15 +1,15 @@ function H = extended_powell_hessian1(x) - ## - ## The Hessian of the extended Powell function. See - ## extended_powell1.m for more information. - ## - ## Since the number of arguments is variable, we take a vector - ## instead of its individual components. - ## + % + % The Hessian of the extended Powell function. See + % extended_powell1.m for more information. + % + % Since the number of arguments is variable, we take a vector + % instead of its individual components. + % n = length(x); if (odd(n)) - ## 'm' below must be an integer. + % 'm' below must be an integer. H = NA; return; end