function [ know, x ] = p33_sol ( n ) %*****************************************************************************80 % %% P33_SOL returns the solution for problem 33. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 11 January 2001 % % Author: % % John Burkardt % % Parameters: % % Input, integer N, the order of the problem. This value % is only needed for those problems with variable N. % % 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(N), the solution, if known. % know = 1; x = 4.0 * ones ( n, 1 ); return end