| DwablphiTra {FuzzyStatTra} | R Documentation |
(\varphi,\theta)-wabl/ldev/rdev distance between trapezoidal fuzzy numbers
Description
This function calculates the (\varphi,\theta)-wabl/ldev/rdev distance between the trapezoidal fuzzy numbers contained in two matrixes, which should be given in the desired format. For this, the function first checks if the input matrixes R and S are in the correct form (tested by checkingTra).
Usage
DwablphiTra(R, S, a = 1, b = 1, theta = 1)
Arguments
R |
matrix of dimension |
S |
matrix of dimension |
a |
number >0, by default |
b |
number >0, by default |
theta |
number >0, by default |
Details
See examples
Value
The function returns a matrix of dimension r x s containing the (\varphi,\theta)-wabl/ldev/rdev distances between the trapezoidal fuzzy numbers of the matrix R and the trapezoidal fuzzy numbers of the matrix S.
Note
In case you find (almost surely existing) bugs or have recommendations for improving the functions comments are welcome to the above mentioned mail addresses.
Author(s)
Asun Lubiano <lubiano@uniovi.es>, Sara de la Rosa de Saa <rosasara@uniovi.es>
References
[1] Sinova, B.; de la Rosa de Saa, S.; Gil, M.A.: A generalized L1-type metric between fuzzy numbers for an approach to central tendency of fuzzy data, Information Sciences 242, pp. 22-34 (2013)
[2] Sinova, B.; Gil, M.A.; Van Aelst, S.: M-estimates of location for the robust central tendency of fuzzy data, IEEE Transactions on Fuzzy Systems 24(4), pp. 945-956 (2016)
See Also
checkingTra, Dwablphi, Wablphi
Examples
# Example 1:
F=SimulCASE1(10)
S=SimulCASE1(20)
DwablphiTra(F,S,5,1,1)
# Example 2:
F=matrix(c(1,1,0,2,3,4,5,6),nrow=2)
S=SimulCASE1(8)
DwablphiTra(F,S)