Click or drag to resize
Accord.NET (logo)

DecisionRuleMatch Method

Checks whether a the rule applies to a given input vector.

Namespace:  Accord.MachineLearning.DecisionTrees.Rules
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
public bool Match(
	double[] input
)
Request Example View Source

Parameters

input
Type: SystemDouble
An input vector.

Return Value

Type: Boolean
True, if the input matches the rule Antecedents; otherwise, false.
See Also