3 %> There are
class code lower than zero with special meaning:
5 % <tr><td><code>>=0</code></td><td>Existing class; refers to element within @ref classlabels property</td>
6 % <tr><td><code>-1</code></td><td>"Refuse-to-decide": a classifier wasn't confident enough to assign a class. See @ref
decider</td>
7 % <tr><td><code>-2</code></td><td>Outlier</td>
8 % <tr><td><code>-3</code></td><td>"Refuse-to-cluster". See @ref
clus_hca</td>
9 % <tr><td><code>-10</code></td><td>not found / error in conversion</td>
12 %> @param x A value <= -1
13 function s = get_negative_meaning(x)
16 s = 'Refuse-to-decide';
20 s = 'Refuse-to-cluster';
22 s = 'Not found/error in conversion';
26 irerror(sprintf('Unrecognized: %d', x));
Block that resolves estimato posterior probabilities into classes.