function p_data = p06_data ( dim_num, data_num ) %*****************************************************************************80 % %% P06_DATA returns the data for problem p06. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 01 August 2011 % % Author: % % John Burkardt % % Parameters: % % Input, integer DIM_NUM, the spatial dimension of the dependent % variables. % % Input, integer DATA_NUM, the number of data points. % % Output, real P_DATA(DIM_NUM,DATA_NUM), the data. % p_data = [ ... 595.0, 0.644; ... 605.0, 0.622; ... 615.0, 0.638; ... 625.0, 0.649; ... 635.0, 0.652; ... 645.0, 0.639; ... 655.0, 0.646; ... 665.0, 0.657; ... 675.0, 0.652; ... 685.0, 0.655; ... 695.0, 0.644; ... 705.0, 0.663; ... 715.0, 0.663; ... 725.0, 0.668; ... 735.0, 0.676; ... 745.0, 0.676; ... 755.0, 0.686; ... 765.0, 0.679; ... 775.0, 0.678; ... 785.0, 0.683; ... 795.0, 0.694; ... 805.0, 0.699; ... 815.0, 0.710; ... 825.0, 0.730; ... 835.0, 0.763; ... 845.0, 0.812; ... 855.0, 0.907; ... 865.0, 1.044; ... 875.0, 1.336; ... 885.0, 1.881; ... 895.0, 2.169; ... 905.0, 2.075; ... 915.0, 1.598; ... 925.0, 1.211; ... 935.0, 0.916; ... 945.0, 0.746; ... 955.0, 0.672; ... 965.0, 0.627; ... 975.0, 0.615; ... 985.0, 0.607; ... 995.0, 0.606; ... 1005.0, 0.609; ... 1015.0, 0.603; ... 1025.0, 0.601; ... 1035.0, 0.603; ... 1045.0, 0.601; ... 1055.0, 0.611; ... 1065.0, 0.601; ... 1075.0, 0.608 ]'; return end