You are here: Start » AVL.NET » AVS.TableOfConfusion_BoolArray Method

AVS.TableOfConfusion_BoolArray Method

Computes statistics from a confusion matrix for an array of groundTruth and results.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void TableOfConfusion_BoolArray
(
	IList<bool> inGroundTruth,
	IList<bool> inResults,
	out long outTruePositive,
	out long outFalsePositive,
	out long outTrueNegative,
	out long outFalseNegative,
	AvlNet.ConfusionTable outConfusionTable
)

Parameters

Name Type Range Default Description
inGroundTruthSystem.Collections.Generic.IList<bool>
inResultsSystem.Collections.Generic.IList<bool>
outTruePositivelong
outFalsePositivelong
outTrueNegativelong
outFalseNegativelong
outConfusionTableAvlNet.ConfusionTable

See also