qat (version 0.74)

qat_analyse_slide_distribution_1d: Perform a slide distribution check

Description

The measurement vector will be scanned stepwise by a sliding window, and on every step some statistical parameters will be calculated.

Usage

qat_analyse_slide_distribution_1d(measurement_vector, blocksize)

Arguments

measurement_vector
The measurement vector, which should be tested
blocksize
Length of the sliding window

Value

It returns a list with the following entries:

Details

The measurement vector will be scanned stepwise by a sliding window, which got a length of the given parameter blocksize. At every step some statistical parameters will be calculated for the actual window. As a result a list will be given back, with these parameters, where every entry got a length of the length of the measurement vector minus the blocksize plus one.

See Also

qat_plot_slide_distribution_1d

Examples

Run this code
vec <- rnorm(100)
result <- qat_analyse_slide_distribution_1d(vec, 10)

Run the code above in your browser using DataCamp Workspace