bootstrap_resampling_routine Interface

interface
public subroutine bootstrap_resampling_routine(x, xn)

Arguments

Type IntentOptional Attributes Name
real(kind=real64), intent(in), dimension(:) :: x

The N-element array to resample.

real(kind=real64), intent(out), dimension(size(x)) :: xn

An N-element array where the resampled data set will be written.

Description

Defines the signature of a subroutine used to compute a resampling of data for bootstrapping purposes.