function [ a, b] = p07_interval ( ) %*****************************************************************************80 % %% P07_INTERVAL returns a starting interval for optimization for problem 7. % % 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 = -10.0; b = +10.0; return end