Accord.Controls.ConfusionMatrixPropertyDescriptor.ConfusionMatrixPropertyDescriptor C# (CSharp) Méthode

ConfusionMatrixPropertyDescriptor() public méthode

Initializes a new instance of the ConfusionMatrixPropertyDescriptor class.
public ConfusionMatrixPropertyDescriptor ( String name, int columnIndex ) : System
name String The name for the column.
columnIndex int Index of the column.
Résultat System
        public ConfusionMatrixPropertyDescriptor(String name, int columnIndex)
            : base(name, null)
        {
            this.ColumnIndex = columnIndex;
            this.name = name;
        }