imgal 0.3.1

A fast and open-source scientific image processing and algorithm library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Statistics functions.

mod correlation;
pub use correlation::{pearson, weighted_kendall_tau_b};
mod min_max;
pub use min_max::max;
pub use min_max::min;
pub use min_max::min_max;
mod percentile;
pub use percentile::linear_percentile;
mod sample;
pub use sample::effective_sample_size;
mod sum;
pub use sum::kahan_sum;
pub use sum::sum;
mod sort;
pub use sort::weighted_merge_sort_mut;