function sparse_test ( ) %*****************************************************************************80 % %% SPARSE_TEST tests SPARSE. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 14 September 2006 % % Author: % % John Burkardt % timestamp ( ); fprintf ( 1, '\n' ); fprintf ( 1, 'SPARSE_TEST\n' ); fprintf ( 1, ' MATLAB version\n' ); fprintf ( 1, ' Test the SPARSE routines.\n' ); sparse_test01 ( ); sparse_test02 ( ); sparse_test03 ( ); sparse_test04 ( ); % % Terminate. % fprintf ( 1, '\n' ); fprintf ( 1, 'SPARSE_TEST\n' ); fprintf ( 1, ' Normal end of execution.\n' ); fprintf ( 1, '\n' ); timestamp ( ); return end