pub struct CorrelationFunctionResult {
pub bin_edges: Array1<F>,
pub bin_centers: Array1<F>,
pub bin_counts: Array1<u64>,
pub correlation: Array1<F>,
}Expand description
Per-frame correlation result.
Fields§
§bin_edges: Array1<F>Bin edges (length n_bins + 1).
bin_centers: Array1<F>Bin centres (length n_bins).
bin_counts: Array1<u64>Running pair count per bin (length n_bins).
correlation: Array1<F>⟨A · B⟩(r) per bin (length n_bins); zero for empty bins.
Trait Implementations§
Source§impl Clone for CorrelationFunctionResult
impl Clone for CorrelationFunctionResult
Source§fn clone(&self) -> CorrelationFunctionResult
fn clone(&self) -> CorrelationFunctionResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CorrelationFunctionResult
impl Debug for CorrelationFunctionResult
Source§impl Default for CorrelationFunctionResult
impl Default for CorrelationFunctionResult
Source§fn default() -> CorrelationFunctionResult
fn default() -> CorrelationFunctionResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CorrelationFunctionResult
impl RefUnwindSafe for CorrelationFunctionResult
impl Send for CorrelationFunctionResult
impl Sync for CorrelationFunctionResult
impl Unpin for CorrelationFunctionResult
impl UnsafeUnpin for CorrelationFunctionResult
impl UnwindSafe for CorrelationFunctionResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more