Function to create Fuzzy Scale
This methods creates fuzzy scale that are used while fuzzifying Piecewise comparison matrix.
Full scale is:
1/2 | 1 | 2 |
1 | 2 | 3 |
2 | 3 | 4 |
3 | 4 | 5 |
4 | 5 | 6 |
5 | 6 | 7 |
6 | 7 | 8 |
7 | 8 | 9 |
8 | 9 | 9 |
Basic scale is:
1/3 | 1 | 3 |
1 | 3 | 5 |
3 | 5 | 7 |
5 | 7 | 9 |
7 | 9 | 9 |
getFuzzyScale(type) ## S4 method for signature 'character' getFuzzyScale(type)
type
: An object of class character
. Two values are possible "full"
and "basic"
.A matrix
representing the fuzzy scale.