qat (version 0.74)

qat_analyse_distribution_2d: Perform a distribution check

Description

This check makes a histogram and gives back some statistical parameters of the given measurement vector.

Usage

qat_analyse_distribution_2d(measurement_vector, numofbars)

Arguments

measurement_vector
The measurement vector (2d array), which should be tested
numofbars
Numbers of bars of the histogram plot

Value

It returns a list with the following entries:

Details

From a given measurement vector (2d array) a histogram will be performed. The number of bars of this will be given by the parameter numofbars. Additionally some statistical parameters, like the first moments and some quantiles will be calculated.

See Also

qat_analyse_distribution_1d, qat_plot_distribution_1d

Examples

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

Run the code above in your browser using DataCamp Workspace