sumFuzzy {fuzzyreg} | R Documentation |
Sum of Two Triangular Fuzzy Numbers
Description
Calculates a sum of two triangular fuzzy numbers defined as a central value, left and right spread.
Usage
sumFuzzy(x, y)
Arguments
x |
a numeric vector of length three, specifying a triangular fuzzy number as its central value, left and right spread. |
y |
a numeric vector of length three, specifying a triangular fuzzy number as its central value, left and right spread. |
Value
Returns a numeric vector, representing a triangular fuzzy number.
Examples
x <- c(1, 0.1, 0.2)
y <- c(2, 0.2, 0.2)
sumFuzzy(x = x, y = y)
[Package fuzzyreg version 0.6.2 Index]