mmvn_toolkit

complete toolkit for generating, training, testing and viewing multidimensional gaussian mixtures
ダウンロード: 2.4K
更新 2016/3/31

ライセンスの表示

A toolkit for Gaussian mixtures.
flexible tools for:
Generating univariate, multivariate, or mixtures of gaussians
Interactive viewing tools allows viewing of multidimensional data and models. Initialize models, add and remove dimensions or clusters and inspect the fit in real-time.
Also includes tools to subset the data using model-based (pseudo-)metrics.
simple example of clustering
% generate 4 clusters in 2 dimensions
[X idx theta] = mmvn_gen( 1000, [0 5; 5 0; 5 5; 0 0] );

% fit data
Opt = mmvn_fit( X, 4, theta );

% plot data
scatter( X(:,1), X(:,2), [], idx, 'filled');
hold on;
% represent fits using ellipses
ellipse( Opt.M, Opt.V);

See mmvn_tutorial (included) for a walk-through of major functionality

引用

Michael Boedigheimer (2024). mmvn_toolkit (https://www.mathworks.com/matlabcentral/fileexchange/15527-mmvn_toolkit), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2007a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersStatistics and Machine Learning Toolbox についてさらに検索
謝辞

ヒントを得たファイル: PSNR

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.1.0.0

updated to use BSD licensing agreement

1.0.0.0

fix bug in mmvn_gen to allow a scalar to be used to specify the number of cases.

Update the inspired by line