Struct statrs::distribution::MultivariateNormal[][src]

pub struct MultivariateNormal { /* fields omitted */ }
Expand description

Implements the Multivariate Normal distribution using the “nalgebra” crate for matrix operations

Examples

use statrs::distribution::{MultivariateNormal, Continuous};
use nalgebra::{DVector, DMatrix};
use statrs::statistics::{MeanN, VarianceN};

let mvn = MultivariateNormal::new(vec![0., 0.], vec![1., 0., 0., 1.]).unwrap();
assert_eq!(mvn.mean().unwrap(), DVector::from_vec(vec![0., 0.]));
assert_eq!(mvn.variance().unwrap(), DMatrix::from_vec(2, 2, vec![1., 0., 0., 1.]));
assert_eq!(mvn.pdf(&DVector::from_vec(vec![1.,  1.])), 0.05854983152431917);

Implementations

Constructs a new multivariate normal distribution with a mean of mean and covariance matrix cov

Errors

Returns an error if the given covariance matrix is not symmetric or positive-definite

Returns the entropy of the multivariate normal distribution

Formula

(1 / 2) * ln(det(2 * π * e * Σ))

where Σ is the covariance matrix and det is the determinant

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Calculates the probability density function for the multivariate normal distribution at x

Formula

(2 * π) ^ (-k / 2) * det(Σ) ^ (1 / 2) * e ^ ( -(1 / 2) * transpose(x - μ) * inv(Σ) * (x - μ))

where μ is the mean, inv(Σ) is the precision matrix, det(Σ) is the determinant of the covariance matrix, and k is the dimension of the distribution

Calculates the log probability density function for the multivariate normal distribution at x. Equivalent to pdf(x).ln().

Formats the value using the given formatter. Read more

Samples from the multivariate normal distribution

Formula

L * Z + μ

where L is the Cholesky decomposition of the covariance matrix, Z is a vector of normally distributed random variables, and μ is the mean vector

Create an iterator that generates random values of T, using rng as the source of randomness. Read more

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more

Returns the maximum value in the domain of the multivariate normal distribution represented by a real vector

Returns the mean of the normal distribution

Remarks

This is the same mean used to construct the distribution

Returns the minimum value in the domain of the multivariate normal distribution represented by a real vector

Returns the mode of the multivariate normal distribution

Formula

μ

where μ is the mean

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Returns the covariance matrix of the multivariate normal distribution

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.