%% NSASM_BIG_TEST shows how to call NSASM with the "big" data. % % Modified: % % 05 September 2006 % % Author: % % John Burkardt % clear timestamp ( ); fprintf ( 1, '\n' ); fprintf ( 1, 'NSASM_BIG_TEST:\n' ); fprintf ( 1, ' Call NSASM_INTERFACE with the "big" test data.\n' ); p_file = 'big_p.txt'; t_file = 'big_t.txt'; e_file = 'big_e.txt'; np0 = 545; nu = 500; nsasm_interface ( p_file, t_file, e_file, np0, nu ); fprintf ( 1, '\n' ); fprintf ( 1, 'NSASM_BIG_TEST:\n' ); fprintf ( 1, ' Normal end of execution.\n' ); fprintf ( 1, '\n' ); timestamp ( );