fft_tarray Function

public function fft_tarray(L, dt) result(time)

Arguments

Type IntentOptional Attributes Name
integer :: L
real(kind=8) :: dt

Return Value real(kind=8), dimension(L)


Calls

proc~~fft_tarray~~CallsGraph proc~fft_tarray fft_tarray proc~fft_tmax fft_tmax proc~fft_tarray->proc~fft_tmax proc~linspace~2 linspace proc~fft_tarray->proc~linspace~2

Source Code

  function fft_tarray(L,dt) result(time)
    real(8)              :: dt
    integer              :: L
    real(8)              :: tmax
    real(8),dimension(L) :: time
    tmax = fft_tmax(L,dt)
    time = linspace(-tmax,tmax,L)
  end function fft_tarray