operator {rLDCP} | R Documentation |
Define the operator
Description
The operator defines the conjunction and disjunction functions used in the fuzzy rules. It takes as input parameters the function used to implement the conjunction, and the function used to implement the disjunction, e.g., "operator(min, max)", where min and max are functions defined by the R language that calculate the maximum and minimum, respectively, from a set of values received as input. Note that, we implicitly assign to the fuzzy implication operator (THEN) the function given for conjunction
Usage
operator(conjunction, disjunction)
Arguments
conjunction |
is the method used to make the conjunction. |
disjunction |
is the method used to make the disjunction. |
Value
the opertator
object my_op <- list(conjunction, disjunction)
.
Examples
operator <- operator(min, max)
[Package rLDCP version 1.0.2 Index]