Note
Function that returns the autocorrelation function of a surface PARAM%acf_surf
subroutine calc_acf() !================================================================================================ !<@note Function that returns the autocorrelation function of a surface PARAM%acf_surf !< !<@endnote !------------------------------------------------------------------------------------------------ implicit none integer(kind=I4) :: w, h w = PARAM%width h = PARAM%height call acf_wiener( tab_in = PARAM%surf(1:w, 1:h), & ! IN tab_out = PARAM%acf_surf(1:w, 1:h), & ! OUT w = w, & ! IN h = h ) ! IN return endsubroutine calc_acf