function test_values_test147 ( ) %*****************************************************************************80 % %% TEST147 demonstrates the use of TRAN02_VALUES. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 01 February 2009 % % Author: % % John Burkardt % fprintf ( 1, '\n' ); fprintf ( 1, 'TEST147:\n' ); fprintf ( 1, ' TRAN02_VALUES stores values of\n' ); fprintf ( 1, ' the transportation function of order 2.\n' ); fprintf ( 1, '\n' ); fprintf ( 1, ' X FX\n' ); fprintf ( 1, '\n' ); n_data = 0; while ( 1 ) [ n_data, x, fx ] = tran02_values ( n_data ); if ( n_data == 0 ) break end fprintf ( 1, ' %12f %24.16f\n', x, fx ); end return end