std

fun std(vararg arrays: FloatArray, channels: Int = 1): FloatArray

Computes std value for each channel of the provided arrays.

NOTE: might be migrated to multik in the future.

Return

an array of size channels containing std value for each channel.

Parameters

arrays

input arrays. Size of each array should be divisible by the passed channels number.

channels

number of channels to compute std value for.

fun FloatArray.std(channels: Int = 1): FloatArray

Computes std value for each channel of the array. Array size should be divisible by the passed channels number.

NOTE: might be migrated to multik in the future.

Return

an array of size channels containing std value for each channel.

Parameters

channels

number of channels to compute std value for.