#! /usr/bin/env python # def besselj_test ( ): #*****************************************************************************80 # ## BESSELJ_TEST tests the BESSELJ library. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 13 January 2016 # # Author: # # John Burkardt # import platform from bessel_jx_values import bessel_jx_values_test from scipy_jv_test import scipy_jv_test print ( '' ) print ( 'BESSELJ_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Test the BESSELJ library.' ) bessel_jx_values_test ( ) scipy_jv_test ( ) # # Terminate. # print ( '' ) print ( 'BESSELJ_TEST:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) besselj_test ( ) timestamp ( )