Code covered by the BSD License  

Highlights from
Expectation Maximization of Gaussian Mixture Models via CUDA

image thumbnail
from Expectation Maximization of Gaussian Mixture Models via CUDA by Andrew Harp
CUDA enabled parallel EM for Gaussian Mixture Models, providing over 100x performance increases.

errorellipse(mu,sigma,stdev,n)
function [x y] = errorellipse(mu,sigma,stdev,n)
L = chol(sigma,'lower');
circle = [cos(2*pi*(0:n)/n); sin(2*pi*(0:n)/n)].*stdev;
ellipse = L*circle + repmat(mu,[1,n+1]);
x = ellipse(1,:);
y = ellipse(2,:);

Contact us