Calculates the fuzzy sum of a vector

fuzzySum(x)

Arguments

x

Vector of values to apply fuzzy sum

Value

Value of fuzzy sum

Note

The fuzzy sum is an increasing linear combination of values. This can be used to sum probabilities or results of multiple density functions.

Author

Jeffrey S. Evans <jeffrey_evans@tnc.org>

Examples

p = c(0.8,0.76,0.87) fuzzySum(p)
#> [1] 0.99376
sum(p)
#> [1] 2.43
p = c(0.3,0.2,0.1) fuzzySum(p)
#> [1] 0.496
sum(p)
#> [1] 0.6