function [ a, b] = p02_interval ( ) %*****************************************************************************80 % %% P02_INTERVAL returns a starting interval for optimization for problem 2. % % 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 = 0.0; b = 1.0; return end