function b = p02_b ( m ) %*****************************************************************************80 % %% P02_B returns the right hand side B for problem 2. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 16 April 2012 % % Author: % % John Burkardt % % Parameters: % % Input, integer M, the number of equations. % % Output, real B(M,1), the right hand side. % b = [ 150.697; 179.323; 203.212; 226.505; 249.633; 281.422 ]; return end