MCPcopy Index your code
hub / github.com/arrayfire/arrayfire-rust / stdev

Function stdev

src/statistics/mod.rs:587–593  ·  view source on GitHub ↗
(input: &Array<T>, dim: i64)

Source from the content-addressed store, hash-verified

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")]
587pub fn stdev<T>(input: &Array<T>, dim: i64) -> Array<T::MeanOutType>
588where
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///

Callers

nothing calls this directly

Calls 1

stdev_v2Function · 0.85

Tested by

no test coverage detected