Accord.Controls.ConfusionMatrixPropertyDescriptor.ConfusionMatrixPropertyDescriptor C# (CSharp) Метод

ConfusionMatrixPropertyDescriptor() публичный Метод

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.
Результат System
        public ConfusionMatrixPropertyDescriptor(String name, int columnIndex)
            : base(name, null)
        {
            this.ColumnIndex = columnIndex;
            this.name = name;
        }