w2dist: w2dist

View source: R/w2dist.R

w2distR Documentation

w2dist

Description

The 2-Wasserstein distance between two multivariate normal distributions

Usage

w2dist(P, Q)

Arguments

P

A multivariate normal distribution given as a list with arguments mean and cov.

Q

A multivariate normal distribution given as a list with arguments mean and cov.

Value

A double giving the 2-Wasserstein distance between the two distributions.

Examples

P <- list(mean = c(1, 1), cov = diag(1, 2))
Q <- list(mean = c(0, 0), cov = 1.1*diag(1, 2))
Q <- list(mean = c(0, 0), cov = 1.1*diag(1, 2))
w2dist(P, Q)


HristoInouzhe/optimalFlow documentation built on April 23, 2023, 5:45 p.m.