stdev_v2

Function stdev_v2 

Source
pub fn stdev_v2<T>(
    input: &Array<T>,
    bias_kind: VarianceBias,
    dim: i64,
) -> Array<T::MeanOutType>
Expand description

Standard deviation along given axis

§Parameters

  • input is the input Array
  • bias_kind of type VarianceBias denotes the type of variane to be computed
  • dim is dimension along which the current stat has to be computed

§Return Values

An Array whose size is equal to input except along the dimension which the stat operation is performed. Array size along dim will be reduced to one.