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

Function stdev_all

src/statistics/mod.rs:631–633  ·  view source on GitHub ↗

Compute standard deviation of all data Parameters - `input` is the input Array Return Values A tuple of 64-bit floating point values with the stat values.

(input: &Array<T>)

Source from the content-addressed store, hash-verified

629///
630/// A tuple of 64-bit floating point values with the stat values.
631pub fn stdev_all<T: HasAfEnum>(input: &Array<T>) -> (f64, f64) {
632 stdev_all_v2(input, VarianceBias::POPULATION)
633}

Callers

nothing calls this directly

Calls 1

stdev_all_v2Function · 0.85

Tested by

no test coverage detected