function [ know, x ] = p07_sol ( ) %*****************************************************************************80 % %% P07_SOL returns the solution for problem 7. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 26 February 2002 % % Author: % % John Burkardt % % Parameters: % % Output, integer KNOW. % If KNOW is 0, then the solution is not known. % If KNOW is positive, then the solution is known, and is returned in X. % % Output, real X, the solution, if known. % know = 1; x = -0.6795786599525; return end