function x = p39_start ( n ) %*****************************************************************************80 % %% P39_START returns a starting point for optimization for problem 39. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 11 January 2001 % % Author: % % John Burkardt % % Parameters: % % Input, integer N, the number of variables X. % % Output, real X(N), a starting point for the optimization. % x = [ 0.6, 1.3 ]'; return end