how I can use gaussian mixture model to calculate a statistical value

조회 수: 3 (최근 30일)
ZhG
ZhG 2013년 11월 22일
댓글: Bruno Pop-Stefanov 2013년 11월 22일
Hello,
I have a set of spacial point, i.e. coordinate (x,y) of each point. I want to use the gaussian mixture model. But, how I can calculate one or several statistical values of these point?

답변 (1개)

Bruno Pop-Stefanov
Bruno Pop-Stefanov 2013년 11월 22일
편집: Brewster 2013년 11월 22일
MATLAB implements the Expectation-Maximization algorithm to fit a Gaussian mixture to some data. Use the gmdistribution.fit function from the gmdistribution class on your input data. There is a detailed example showing you the steps here. You can then have access to the means and covariances of each distribution in the mixture. Does that answer your question?
  댓글 수: 4
ZhG
ZhG 2013년 11월 22일
And is there any bivariate gaussian model in Matlab? Thanks again.
Bruno Pop-Stefanov
Bruno Pop-Stefanov 2013년 11월 22일
You have to specify the number of Gaussian models in your mixture; that's the parameter k.
X represents the data you would like a Gaussian mixture to fit to. If you have 2D points, then X is a list a (x,y) coordinates, i.e. a N-by-2 matrix. If your X is a vector, then your data is 1-dimensional.
The dimensions of the Gaussian distributions in the mixture are deduced from the dimensions of your input data X. For example, using 2D data, each point has 2 dimensions and the Gaussians in the mixture will have 2 dimensions as well.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by