powered by
This function computes the distribution function of a mixture of Gaussian univariate distributions
GaussianMixtureCdf(x, mu, sigma, w)
values of the distribution function
Points at which the distribution function is comptuted (nx1);
vector of means for each regime (r x 1);
vector of standard deviations for each regime (r x 1);
vector of the probability of each regime (r x r).
Bouchra R Nasri and Bruno N Rémillard, January 31, 2019
mu <- c(-0.3 ,0.7) ; sigma <- c(0.15,0.05); w <-c(0.8, 0.2); x <- seq(-1, 1, by = 0.01) F <- GaussianMixtureCdf(x,mu,sigma,w) plot(x,F,type="l")
Run the code above in your browser using DataLab