(input: &Array<T>, isbiased: bool)
| 318 | /// A tuple of 64-bit floating point values that has the variance of `input` Array. |
| 319 | #[deprecated(since = "3.8.0", note = "Please use var_all_v2 API")] |
| 320 | pub fn var_all<T: HasAfEnum>(input: &Array<T>, isbiased: bool) -> (f64, f64) { |
| 321 | var_all_v2( |
| 322 | input, |
| 323 | if isbiased { |
| 324 | VarianceBias::SAMPLE |
| 325 | } else { |
| 326 | VarianceBias::POPULATION |
| 327 | }, |
| 328 | ) |
| 329 | } |
| 330 | |
| 331 | macro_rules! stat_all_func_def { |
| 332 | ($doc_str: expr, $fn_name: ident, $ffi_fn: ident) => { |
nothing calls this directly
no test coverage detected