You are here: Start » FIL.NET » Invoke.TableOfConfusion_BoolArray

Invoke.TableOfConfusion_BoolArray

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

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void TableOfConfusion_BoolArray
(
	List<bool> inGroundTruth,
	List<bool> inResults,
	out long outTruePositive,
	out long outFalsePositive,
	out long outTrueNegative,
	out long outFalseNegative,
	Fil.ConfusionTable outConfusionTable
)

Parameters

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

See also