function [ a, b] = p06_interval ( ) %*****************************************************************************80 % %% P06_INTERVAL returns a starting interval for optimization for problem 6. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 26 February 2002 % % Author: % % John Burkardt % % Parameters: % % Output, real A, B, two points defining an interval in which % the local minimizer should be sought. % a = 7.0; b = 9.0; return end