gmmcPlot

Plot the results of GMMC (Gaussian-mixture-model classifier)

Contents

Syntax

Description

gmmcPlot(DS, gmmcPrm, mode) plots the results of a GMMC.

gmmcPlot(DS, gmmcPrm, mode) uses an additional string variable to specify the type of plot

surfObj=gmmcPlot(DS, gmmcPrm, ...) return the surface object for plotting instead of plotting directly.

Example

This example uses the Taiji dataset for classification:

DS=prData('random2');
gmmcPrm=gmmcTrain(DS);

Plot 2D PDF:

figure; gmmcPlot(DS, gmmcPrm, '2dPdf');

Plot 2D posterior probability:

figure; gmmcPlot(DS, gmmcPrm, '2dPosterior');

Plot decision boundary:

figure; gmmcPlot(DS, gmmcPrm, 'decBoundary');

See Also

gmmcTrain, gmmcEval.


Top page   Next: gmmcGaussianNumEstimate.m   Prev:gmmcTrain.m