mean_of_arrays

tessilator.lc_analysis.mean_of_arrays(arr, num)[source]

Calculate the mean and standard deviation of an array which is split into N components.

Parameters:
arrIterable

The input array

numint

The number of arrays to split the data (equally) into

Returns:
mean_outfloat

The mean of the list of arrays.

std_outfloat

The standard deviation of the list of arrays.