fuzzySum
From spatialEco v1.3-2
by Jeffrey S Evans
Fuzzy Sum
Calculates the fuzzy sum of a vector
Usage
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.
Examples
# NOT RUN {
p = c(0.8,0.76,0.87)
fuzzySum(p)
sum(p)
p = c(0.3,0.2,0.1)
fuzzySum(p)
sum(p)
# }
Community examples
Looks like there are no examples yet.