subroutine cosine_transform_data ( n, d, c ) !*****************************************************************************80 ! !! COSINE_TRANSFORM_DATA does a cosine transform on a vector of data. ! ! Licensing: ! ! This code is distributed under the GNU LGPL license. ! ! Modified: ! ! 26 August 2015 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, integer ( kind = 4 ) N, the number of data points. ! ! Input, real ( kind = 8 ) D(N), the vector of data. ! ! Output, real ( kind = 8 ) C(N), the cosine transform coefficients. ! implicit none integer ( kind = 4 ) n real ( kind = 8 ) c(n) real ( kind = 8 ) d(n) integer ( kind = 4 ) i integer ( kind = 4 ) j real ( kind = 8 ), parameter :: r8_pi = 3.141592653589793D+00 c(1:n) = 0.0D+00 do i = 1, n do j = 1, n c(i) = c(i) + cos ( r8_pi * real ( 2 * j - 1, kind = 8 ) & * real ( i - 1, kind = 8 ) / 2.0D+00 / real ( n, kind = 8 ) ) * d(j); end do end do c(1:n) = c(1:n) * sqrt ( 2.0D+00 / real ( n, kind = 8 ) ) return end subroutine cosine_transform_inverse ( n, c, d ) !*****************************************************************************80 ! !! COSINE_TRANSFORM_INVERSE does an inverse cosine transform. ! ! Licensing: ! ! This code is distributed under the GNU LGPL license. ! ! Modified: ! ! 26 August 2015 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! Input, integer ( kind = 4 ) N, the number of data points. ! ! Input, real ( kind = 8 ) C(N), the cosine transform coefficients. ! ! Output, real ( kind = 8 ) D(N), the vector of data. ! implicit none integer ( kind = 4 ) n real ( kind = 8 ) c(n) real ( kind = 8 ) d(n) integer ( kind = 4 ) i integer ( kind = 4 ) j real ( kind = 8 ), parameter :: r8_pi = 3.141592653589793D+00 do i = 1, n d(i) = c(1) / 2.0D+00 do j = 2, n d(i) = d(i) + cos ( r8_pi * real ( 2 * i - 1, kind = 8 ) & * real ( j - 1, kind = 8 ) / 2.0D+00 / real ( n, kind = 8 ) ) * c(j) end do end do d(1:n) = d(1:n) * sqrt ( 2.0D+00 / real ( n, kind = 8 ) ) return end subroutine r8vec_uniform_01 ( n, seed, r ) !*****************************************************************************80 ! !! R8VEC_UNIFORM_01 returns a unit pseudorandom R8VEC. ! ! Discussion: ! ! An R8VEC is a vector of R8's. ! ! Licensing: ! ! This code is distributed under the GNU LGPL license. ! ! Modified: ! ! 13 August 2014 ! ! Author: ! ! John Burkardt ! ! Reference: ! ! Paul Bratley, Bennett Fox, Linus Schrage, ! A Guide to Simulation, ! Springer Verlag, pages 201-202, 1983. ! ! Bennett Fox, ! Algorithm 647: ! Implementation and Relative Efficiency of Quasirandom ! Sequence Generators, ! ACM Transactions on Mathematical Software, ! Volume 12, Number 4, pages 362-376, 1986. ! ! Peter Lewis, Allen Goodman, James Miller ! A Pseudo-Random Number Generator for the System/360, ! IBM Systems Journal, ! Volume 8, pages 136-143, 1969. ! ! Parameters: ! ! Input, integer ( kind = 4 ) N, the number of entries in the vector. ! ! Input/output, integer ( kind = 4 ) SEED, the "seed" value, which ! should NOT be 0. On output, SEED has been updated. ! ! Output, real ( kind = 8 ) R(N), the vector of pseudorandom values. ! implicit none integer ( kind = 4 ) n integer ( kind = 4 ) i integer ( kind = 4 ), parameter :: i4_huge = 2147483647 integer ( kind = 4 ) k integer ( kind = 4 ) seed real ( kind = 8 ) r(n) if ( seed == 0 ) then write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'R8VEC_UNIFORM_01 - Fatal error!' write ( *, '(a)' ) ' Input value of SEED = 0.' stop 1 end if do i = 1, n k = seed / 127773 seed = 16807 * ( seed - k * 127773 ) - k * 2836 if ( seed < 0 ) then seed = seed + i4_huge end if r(i) = real ( seed, kind = 8 ) * 4.656612875D-10 end do return end subroutine timestamp ( ) !*****************************************************************************80 ! !! TIMESTAMP prints the current YMDHMS date as a time stamp. ! ! Example: ! ! 31 May 2001 9:45:54.872 AM ! ! Licensing: ! ! This code is distributed under the GNU LGPL license. ! ! Modified: ! ! 18 May 2013 ! ! Author: ! ! John Burkardt ! ! Parameters: ! ! None ! implicit none character ( len = 8 ) ampm integer ( kind = 4 ) d integer ( kind = 4 ) h integer ( kind = 4 ) m integer ( kind = 4 ) mm character ( len = 9 ), parameter, dimension(12) :: month = (/ & 'January ', 'February ', 'March ', 'April ', & 'May ', 'June ', 'July ', 'August ', & 'September', 'October ', 'November ', 'December ' /) integer ( kind = 4 ) n integer ( kind = 4 ) s integer ( kind = 4 ) values(8) integer ( kind = 4 ) y call date_and_time ( values = values ) y = values(1) m = values(2) d = values(3) h = values(5) n = values(6) s = values(7) mm = values(8) if ( h < 12 ) then ampm = 'AM' else if ( h == 12 ) then if ( n == 0 .and. s == 0 ) then ampm = 'Noon' else ampm = 'PM' end if else h = h - 12 if ( h < 12 ) then ampm = 'PM' else if ( h == 12 ) then if ( n == 0 .and. s == 0 ) then ampm = 'Midnight' else ampm = 'AM' end if end if end if write ( *, '(i2.2,1x,a,1x,i4,2x,i2,a1,i2.2,a1,i2.2,a1,i3.3,1x,a)' ) & d, trim ( month(m) ), y, h, ':', n, ':', s, '.', mm, trim ( ampm ) return end