sumFuzzy: Sum of Two Triangular Fuzzy Numbers

View source: R/sumFuzzy.R

sumFuzzyR 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)

fuzzyreg documentation built on March 31, 2023, 9:19 p.m.