powered by
Calculates the fuzzy sum of a vector
fuzzySum(x)
Value of fuzzy sum
Vector of values to apply fuzzy sum
Jeffrey S. Evans <jeffrey_evans@tnc.org>
The fuzzy sum is an increasing linear combination of values. This can be used to sum probabilities or results of multiple density functions.
p = c(0.8,0.76,0.87) fuzzySum(p) sum(p) p = c(0.3,0.2,0.1) fuzzySum(p) sum(p)
Run the code above in your browser using DataLab