Struct bio::stats::probs::LogProb[][src]

pub struct LogProb(pub f64);

A newtype for log-scale probabilities. For performance reasons, we use an approximation of the exp method implemented in bio::utils::FastExp. This can lead to slight errors, but should not matter given that most of the probability differences are reflected within the integer part of the log probability.

Example

#[macro_use]
extern crate approx;
use bio::stats::{LogProb, Prob};

// convert from probability
let p = LogProb::from(Prob(0.5));
// convert manually
let q = LogProb(0.2f64.ln());
// obtain zero probability in log-space
let o = LogProb::ln_one();

assert_relative_eq!(*Prob::from(p.ln_add_exp(q) + o), *Prob(0.7), epsilon=0.000001);

Implementations

impl LogProb[src]

pub fn is_valid(&self) -> bool[src]

pub fn ln_zero() -> LogProb[src]

Log-space representation of Pr=0

pub fn ln_one() -> LogProb[src]

Log-space representation of Pr=1

pub fn cap_numerical_overshoot(&self, epsilon: f64) -> LogProb[src]

sums of LogProbs, e.g. with ln_sum_exp() can end up slightly above the maximum of LogProb <= 0 due to numerical imprecisions – this function can rescue such values before panics due to asserts in other functions handling LogProbs, e.g. ln_1m_exp

pub fn ln_one_minus_exp(&self) -> LogProb[src]

Numerically stable calculation of 1 - p in log-space.

pub fn ln_sum_exp(probs: &[LogProb]) -> LogProb[src]

Numerically stable sum of probabilities in log-space.

pub fn ln_add_exp(self, other: LogProb) -> LogProb[src]

Numerically stable addition of probabilities in log-space.

pub fn ln_sub_exp(self, other: LogProb) -> LogProb[src]

Numerically stable subtraction of probabilities in log-space.

pub fn ln_cumsum_exp<I: IntoIterator<Item = LogProb>>(probs: I) -> ScanIter<I>[src]

Calculate the cumulative sum of the given probabilities in a numerically stable way (Durbin 1998).

pub fn ln_trapezoidal_integrate_exp<T, D>(
    density: D,
    a: T,
    b: T,
    n: usize
) -> LogProb where
    T: Copy + Add<Output = T> + Sub<Output = T> + Div<Output = T> + Mul<Output = T> + Float,
    D: FnMut(usize, T) -> LogProb,
    f64: From<T>, 
[src]

Integrate numerically stable over given log-space density in the interval [a, b]. Uses the trapezoidal rule with n grid points.

pub fn ln_simpsons_integrate_exp<T, D>(
    density: D,
    a: T,
    b: T,
    n: usize
) -> LogProb where
    T: Copy + Add<Output = T> + Sub<Output = T> + Div<Output = T> + Mul<Output = T> + Float,
    D: FnMut(usize, T) -> LogProb,
    f64: From<T>, 
[src]

Integrate numerically stable over given log-space density in the interval [a, b]. Uses Simpson’s rule with n (odd) grid points.

pub fn ln_trapezoidal_integrate_grid_exp<T, D>(
    density: D,
    grid: &[T]
) -> LogProb where
    T: Copy + Add<Output = T> + Sub<Output = T> + Div<Output = T> + Mul<Output = T> + Float,
    D: FnMut(usize, T) -> LogProb,
    f64: From<T>, 
[src]

Integrate numerically stable over given log-space density and grid points. Uses the trapezoidal rule.

Methods from Deref<Target = f64>

pub const RADIX: u321.43.0[src]

pub const MANTISSA_DIGITS: u321.43.0[src]

pub const DIGITS: u321.43.0[src]

pub const EPSILON: f641.43.0[src]

pub const MIN: f641.43.0[src]

pub const MIN_POSITIVE: f641.43.0[src]

pub const MAX: f641.43.0[src]

pub const MIN_EXP: i321.43.0[src]

pub const MAX_EXP: i321.43.0[src]

pub const MIN_10_EXP: i321.43.0[src]

pub const MAX_10_EXP: i321.43.0[src]

pub const NAN: f641.43.0[src]

pub const INFINITY: f641.43.0[src]

pub const NEG_INFINITY: f641.43.0[src]

pub fn as_ne_bytes(&self) -> &[u8; 8][src]

🔬 This is a nightly-only experimental API. (num_as_ne_bytes)

Return the memory representation of this floating point number as a byte array in native byte order.

to_ne_bytes should be preferred over this whenever possible.

Examples

#![feature(num_as_ne_bytes)]
let num = 12.5f64;
let bytes = num.as_ne_bytes();
assert_eq!(
    bytes,
    if cfg!(target_endian = "big") {
        &[0x40, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]
    } else {
        &[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x29, 0x40]
    }
);

pub fn total_cmp(&self, other: &f64) -> Ordering[src]

🔬 This is a nightly-only experimental API. (total_cmp)

Returns an ordering between self and other values. Unlike the standard partial comparison between floating point numbers, this comparison always produces an ordering in accordance to the totalOrder predicate as defined in IEEE 754 (2008 revision) floating point standard. The values are ordered in following order:

  • Negative quiet NaN
  • Negative signaling NaN
  • Negative infinity
  • Negative numbers
  • Negative subnormal numbers
  • Negative zero
  • Positive zero
  • Positive subnormal numbers
  • Positive numbers
  • Positive infinity
  • Positive signaling NaN
  • Positive quiet NaN

Note that this function does not always agree with the PartialOrd and PartialEq implementations of f64. In particular, they regard negative and positive zero as equal, while total_cmp doesn’t.

Example

#![feature(total_cmp)]
struct GoodBoy {
    name: String,
    weight: f64,
}

let mut bois = vec![
    GoodBoy { name: "Pucci".to_owned(), weight: 0.1 },
    GoodBoy { name: "Woofer".to_owned(), weight: 99.0 },
    GoodBoy { name: "Yapper".to_owned(), weight: 10.0 },
    GoodBoy { name: "Chonk".to_owned(), weight: f64::INFINITY },
    GoodBoy { name: "Abs. Unit".to_owned(), weight: f64::NAN },
    GoodBoy { name: "Floaty".to_owned(), weight: -5.0 },
];

bois.sort_by(|a, b| a.weight.total_cmp(&b.weight));

Trait Implementations

impl<'a> Add<&'a LogProb> for &'a LogProb[src]

type Output = LogProb

The resulting type after applying the + operator.

impl<'a> Add<&'a LogProb> for LogProb[src]

type Output = LogProb

The resulting type after applying the + operator.

impl Add<LogProb> for LogProb[src]

type Output = LogProb

The resulting type after applying the + operator.

impl<'a> Add<LogProb> for &'a LogProb[src]

type Output = LogProb

The resulting type after applying the + operator.

impl AddAssign<LogProb> for LogProb[src]

impl Clone for LogProb[src]

impl Copy for LogProb[src]

impl Debug for LogProb[src]

impl Default for LogProb[src]

impl Deref for LogProb[src]

type Target = f64

The resulting type after dereferencing.

impl<'de> Deserialize<'de> for LogProb[src]

impl From<LogProb> for f64[src]

impl From<LogProb> for Prob[src]

impl From<LogProb> for PHREDProb[src]

impl From<NotNan<f64>> for LogProb[src]

impl From<PHREDProb> for LogProb[src]

impl From<Prob> for LogProb[src]

impl From<f64> for LogProb[src]

impl PartialEq<LogProb> for LogProb[src]

impl PartialOrd<LogProb> for LogProb[src]

impl Serialize for LogProb[src]

impl StructuralPartialEq for LogProb[src]

impl<'a> Sub<&'a LogProb> for &'a LogProb[src]

type Output = LogProb

The resulting type after applying the - operator.

impl<'a> Sub<&'a LogProb> for LogProb[src]

type Output = LogProb

The resulting type after applying the - operator.

impl Sub<LogProb> for LogProb[src]

type Output = LogProb

The resulting type after applying the - operator.

impl<'a> Sub<LogProb> for &'a LogProb[src]

type Output = LogProb

The resulting type after applying the - operator.

impl SubAssign<LogProb> for LogProb[src]

impl<'a> Sum<&'a LogProb> for LogProb[src]

impl<'a> Sum<LogProb> for LogProb[src]

impl Zero for LogProb[src]

Auto Trait Implementations

impl RefUnwindSafe for LogProb

impl Send for LogProb

impl Sync for LogProb

impl Unpin for LogProb

impl UnwindSafe for LogProb

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, Right> ClosedAdd<Right> for T where
    T: Add<Right, Output = T> + AddAssign<Right>, 

impl<T, Right> ClosedSub<Right> for T where
    T: Sub<Right, Output = T> + SubAssign<Right>, 

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<M> Measure for M where
    M: Debug + PartialOrd<M> + Add<M, Output = M> + Default + Clone
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Debug + Any
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,