qat (version 0.74)

qat_analyse_block_distribution_1d: Perform a block distribution check

Description

The measurement vector will be splitted into blocks, and on every block some statistical parameters will be calculated.

Usage

qat_analyse_block_distribution_1d(measurement_vector, blocksize)

Arguments

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

Value

It returns a list with the following entries:

Details

The measurement vector will be splitted into blocks, with the length of the given blocksize parameter. After this some statistical parameters will be calculated for every block. 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 divided by the blocksize, which is rounded down to the next integer.

See Also

qat_plot_block_distribution_1d

Examples

Run this code
vec <- rnorm(1000)
result <- qat_analyse_block_distribution_1d(vec, 50)

Run the code above in your browser using DataCamp Workspace