fuzzySum | R Documentation |
Calculates the fuzzy sum of a vector
fuzzySum(x)
x |
Vector of values to apply fuzzy sum |
The fuzzy sum is an increasing linear combination of values. This can be used to sum probabilities or results of multiple density functions.
Value of fuzzy sum
Jeffrey S. Evans <jeffrey_evans@tnc.org>
p = c(0.8,0.76,0.87)
fuzzySum(p)
sum(p)
p = c(0.3,0.2,0.1)
fuzzySum(p)
sum(p)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.