#[cfg(feature = "std")]
use num_traits::Float;
use num_traits::One;
use num_traits::{FromPrimitive, Zero};
use std::ops::{Add, Div, Mul, MulAssign, Sub};
use crate::imp_prelude::*;
use crate::numeric_util;
use crate::Slice;
impl<A, D> ArrayRef<A, D>
where D: Dimension
{
pub fn sum(&self) -> A
where A: Clone + Add<Output = A> + num_traits::Zero
{
if let Some(slc) = self.as_slice_memory_order() {
return numeric_util::unrolled_fold(slc, A::zero, A::add);
}
let mut sum = A::zero();
for row in self.rows() {
if let Some(slc) = row.as_slice() {
sum = sum + numeric_util::unrolled_fold(slc, A::zero, A::add);
} else {
sum = sum + row.iter().fold(A::zero(), |acc, elt| acc + elt.clone());
}
}
sum
}
pub fn mean(&self) -> Option<A>
where A: Clone + FromPrimitive + Add<Output = A> + Div<Output = A> + Zero
{
let n_elements = self.len();
if n_elements == 0 {
None
} else {
let n_elements = A::from_usize(n_elements).expect("Converting number of elements to `A` must not fail.");
Some(self.sum() / n_elements)
}
}
pub fn product(&self) -> A
where A: Clone + Mul<Output = A> + num_traits::One
{
if let Some(slc) = self.as_slice_memory_order() {
return numeric_util::unrolled_fold(slc, A::one, A::mul);
}
let mut sum = A::one();
for row in self.rows() {
if let Some(slc) = row.as_slice() {
sum = sum * numeric_util::unrolled_fold(slc, A::one, A::mul);
} else {
sum = sum * row.iter().fold(A::one(), |acc, elt| acc * elt.clone());
}
}
sum
}
#[track_caller]
pub fn cumprod(&self, axis: Axis) -> Array<A, D>
where
A: Clone + Mul<Output = A> + MulAssign,
D: Dimension + RemoveAxis,
{
if axis.0 >= self.ndim() {
panic!("axis is out of bounds for array of dimension");
}
let mut result = self.to_owned();
result.accumulate_axis_inplace(axis, |prev, curr| *curr *= prev.clone());
result
}
#[track_caller]
#[cfg(feature = "std")]
pub fn var(&self, ddof: A) -> A
where A: Float + FromPrimitive
{
let zero = A::from_usize(0).expect("Converting 0 to `A` must not fail.");
let n = A::from_usize(self.len()).expect("Converting length to `A` must not fail.");
assert!(
!(ddof < zero || ddof > n),
"`ddof` must not be less than zero or greater than the length of \
the axis",
);
let dof = n - ddof;
let mut mean = A::zero();
let mut sum_sq = A::zero();
let mut i = 0;
self.for_each(|&x| {
let count = A::from_usize(i + 1).expect("Converting index to `A` must not fail.");
let delta = x - mean;
mean = mean + delta / count;
sum_sq = (x - mean).mul_add(delta, sum_sq);
i += 1;
});
sum_sq / dof
}
#[track_caller]
#[cfg(feature = "std")]
pub fn std(&self, ddof: A) -> A
where A: Float + FromPrimitive
{
self.var(ddof).sqrt()
}
#[track_caller]
pub fn sum_axis(&self, axis: Axis) -> Array<A, D::Smaller>
where
A: Clone + Zero + Add<Output = A>,
D: RemoveAxis,
{
let min_stride_axis = self._dim().min_stride_axis(self._strides());
if axis == min_stride_axis {
crate::Zip::from(self.lanes(axis)).map_collect(|lane| lane.sum())
} else {
let mut res = Array::zeros(self.raw_dim().remove_axis(axis));
for subview in self.axis_iter(axis) {
res = res + &subview;
}
res
}
}
#[track_caller]
pub fn product_axis(&self, axis: Axis) -> Array<A, D::Smaller>
where
A: Clone + One + Mul<Output = A>,
D: RemoveAxis,
{
let min_stride_axis = self._dim().min_stride_axis(self._strides());
if axis == min_stride_axis {
crate::Zip::from(self.lanes(axis)).map_collect(|lane| lane.product())
} else {
let mut res = Array::ones(self.raw_dim().remove_axis(axis));
for subview in self.axis_iter(axis) {
res = res * &subview;
}
res
}
}
#[track_caller]
pub fn mean_axis(&self, axis: Axis) -> Option<Array<A, D::Smaller>>
where
A: Clone + Zero + FromPrimitive + Add<Output = A> + Div<Output = A>,
D: RemoveAxis,
{
let axis_length = self.len_of(axis);
if axis_length == 0 {
None
} else {
let axis_length = A::from_usize(axis_length).expect("Converting axis length to `A` must not fail.");
let sum = self.sum_axis(axis);
Some(sum / aview0(&axis_length))
}
}
#[track_caller]
#[cfg(feature = "std")]
pub fn var_axis(&self, axis: Axis, ddof: A) -> Array<A, D::Smaller>
where
A: Float + FromPrimitive,
D: RemoveAxis,
{
let zero = A::from_usize(0).expect("Converting 0 to `A` must not fail.");
let n = A::from_usize(self.len_of(axis)).expect("Converting length to `A` must not fail.");
assert!(
!(ddof < zero || ddof > n),
"`ddof` must not be less than zero or greater than the length of \
the axis",
);
let dof = n - ddof;
let mut mean = Array::<A, _>::zeros(self._dim().remove_axis(axis));
let mut sum_sq = Array::<A, _>::zeros(self._dim().remove_axis(axis));
for (i, subview) in self.axis_iter(axis).enumerate() {
let count = A::from_usize(i + 1).expect("Converting index to `A` must not fail.");
azip!((mean in &mut mean, sum_sq in &mut sum_sq, &x in &subview) {
let delta = x - *mean;
*mean = *mean + delta / count;
*sum_sq = (x - *mean).mul_add(delta, *sum_sq);
});
}
sum_sq.mapv_into(|s| s / dof)
}
#[track_caller]
#[cfg(feature = "std")]
pub fn std_axis(&self, axis: Axis, ddof: A) -> Array<A, D::Smaller>
where
A: Float + FromPrimitive,
D: RemoveAxis,
{
self.var_axis(axis, ddof).mapv_into(|x| x.sqrt())
}
pub fn diff(&self, n: usize, axis: Axis) -> Array<A, D>
where A: Sub<A, Output = A> + Zero + Clone
{
if n == 0 {
return self.to_owned();
}
assert!(axis.0 < self.ndim(), "The array has only ndim {}, but `axis` {:?} is given.", self.ndim(), axis);
assert!(
n < self.shape()[axis.0],
"The array must have length at least `n+1`=={} in the direction of `axis`. It has length {}",
n + 1,
self.shape()[axis.0]
);
let mut inp = self.to_owned();
let mut out = Array::zeros({
let mut inp_dim = self.raw_dim();
inp_dim[axis.0] -= 1;
inp_dim
});
for _ in 0..n {
let head = inp.slice_axis(axis, Slice::from(..-1));
let tail = inp.slice_axis(axis, Slice::from(1..));
azip!((o in &mut out, h in head, t in tail) *o = t.clone() - h.clone());
std::mem::swap(&mut inp, &mut out);
out.slice_axis_inplace(axis, Slice::from(..-2));
}
inp
}
}