(input: &Array<T>, dim: i64)
| 585 | /// the stat operation is performed. Array size along `dim` will be reduced to one. |
| 586 | #[deprecated(since = "3.8.0", note = "Please use stdev_v2 API")] |
| 587 | pub fn stdev<T>(input: &Array<T>, dim: i64) -> Array<T::MeanOutType> |
| 588 | where |
| 589 | T: HasAfEnum, |
| 590 | T::MeanOutType: HasAfEnum, |
| 591 | { |
| 592 | stdev_v2(input, VarianceBias::POPULATION, dim) |
| 593 | } |
| 594 | |
| 595 | /// Compute standard deviation of all data |
| 596 | /// |
nothing calls this directly
no test coverage detected