qat (version 0.74)

qat_analyse_block_distribution_2d: Perform a block distribution check

Description

The measurement vector will be splitted into blocks in the direction of the first dimension. After this on every block some statistical parameters will be calculated.

Usage

qat_analyse_block_distribution_2d(measurement_vector, blocksize)

Arguments

measurement_vector
The measurement vector (2d array), 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 for each element of the second dimension, with the length of the given blocksize parameter. After this some statistical parameters will be calculated for each block. As a result a list will be given back, with these parameters, where every entry got the dimension of the measurement vector, where the first dimension is divided by the blocksize, which is rounded down to the next integer.

See Also

qat_analyse_block_distribution_1d, qat_plot_block_distribution_2d

Examples

Run this code
vec <- array(rnorm(500),c(25,20))
result <- qat_analyse_block_distribution_2d(vec, 5)

Run the code above in your browser using DataLab