function blas1_z_test ( ) %% BLAS1_Z_TEST tests the BLAS1 double precision complex routines. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 16 May 2006 % % Author: % % John Burkardt % timestamp ( ); fprintf ( 1, '\n' ); fprintf ( 1, 'BLAS1_Z_PRB:\n' ); fprintf ( 1, ' Tests for the MATLAB version\n' ); fprintf ( 1, ' using double precision complex arithmetic\n' ); fprintf ( 1, ' of the BLAS1,\n' ); fprintf ( 1, ' the Level 1 Basic Linear Algebra Subprograms.\n' ); blas1_z_test01 ( ); blas1_z_test02 ( ); blas1_z_test03 ( ); blas1_z_test04 ( ); blas1_z_test05 ( ); blas1_z_test06 ( ); blas1_z_test07 ( ); blas1_z_test08 ( ); blas1_z_test09 ( ); blas1_z_test10 ( ); blas1_z_test11 ( ); blas1_z_test12 ( ); blas1_z_test13 ( ); blas1_z_test14 ( ); blas1_z_test15 ( ); blas1_z_test16 ( ); blas1_z_test17 ( ); fprintf ( 1, '\n' ); fprintf ( 1, 'BLAS1_Z_PRB:\n' ); fprintf ( 1, ' Normal end of execution.\n' ); fprintf ( 1, '\n' ); timestamp ( ); return end