compact
Class: ClassificationDiscriminant
Compact discriminant analysis classifier
Syntax
cobj = compact(obj)
Input Arguments
|
Discriminant analysis classifier created using |
Output Arguments
|
Compact classifier. |
Examples
Compare the size of the discriminant analysis classifier for Fisher's iris data to the compact version of the classifier:
load fisheriris fullobj = fitcdiscr(meas,species); cobj = compact(fullobj); b = whos('fullobj'); % b.bytes = size of fullobj c = whos('cobj'); % c.bytes = size of cobj [b.bytes c.bytes] % shows cobj uses 60% of the memory ans = 18578 11498