Gaussian decomposition
이전 댓글 표시
I am a physics major student.Now I want to use two Gaussian functions to fit the original function(When given the x,y data)in matlab.And this is for the emission spectrum.So,which function should I use(or which way)?Thank you!
답변 (1개)
Walter Roberson
2011년 10월 15일
0 개 추천
댓글 수: 3
yunle wei
2011년 10월 15일
Walter Roberson
2011년 10월 15일
Those routines appear to do that. See for example the text
2. Fit a two-component Gaussian mixture distribution. Here, you know the correct number of components to use. In practice, with real data, this decision would require comparing models with different numbers of components.
options = statset('Display','final');
gm = gmdistribution.fit(X,2,'Options',options);
yunle wei
2011년 10월 17일
카테고리
도움말 센터 및 File Exchange에서 Smoothing and Denoising에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!