/* ClassificationTable.c
 * 
 * Copyright (C) 1993-2002 David Weenink
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

/*
 djmw 1998
 djmw 20020315 GPL header
 */

#include "ClassificationTable.h"
#include "NUM2.h"

class_methods (ClassificationTable, TableOfReal)
class_methods_end

ClassificationTable ClassificationTable_create (long numberOfRows, long numberOfGroups)
{
	ClassificationTable me = new (ClassificationTable);
	
	if (! me || ! TableOfReal_init (me, numberOfRows, numberOfGroups)) forget (me);
	return me;
}

Confusion ClassificationTable_to_Confusion (ClassificationTable me)
{
	Confusion thee; long i, j, n = my numberOfColumns, unknowns = 0;
	
	if (! (thee = Confusion_create (n, n)) ||
		! NUMstrings_copyElements (my columnLabels, thy columnLabels, 1, n) ||
		! NUMstrings_copyElements (my columnLabels, thy rowLabels, 1, n))
	{
		forget (thee); return NULL;
	}
	
	for (i=1; i <= my numberOfRows; i++)
	{
		double max = my data[i][1]; long col = 1, row;
		for (j=2; j <= n; j++)
		{
			if (my data[i][j] > max) { max = my data[i][j]; col = j; }
		}
		row = TableOfReal_rowLabelToIndex (thee, my rowLabels[i]);
		if (row < 1) unknowns ++; else thy data[row][col] += 1;
	}
	if (unknowns > 0) Melder_warning ("ClassificationTable_to_Confusion: %d unknown labels", unknowns);
	return thee;
}

/* End of file ClassificationTable.c */
