operator: Define the operator

Description Usage Arguments Value Examples

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

1
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

1

Example output



rLDCP documentation built on May 2, 2019, 2:30 a.m.

Related to operator in rLDCP...