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!