representativeValue()
方法用于计算三角模糊集合的代表值。
TriangularFuzzySet.representativeValue();
返回三角模糊集合的代表值。
const fuzzySet = new TriangularFuzzySet(2, 5, 8);
const representativeValue = fuzzySet.representativeValue();
console.log(representativeValue); // 输出 5
三角模糊集合的代表值即其模糊元素值的平均值,即 $RepresentativeValue=\frac{(a+b+c)}{3}$。
其中,$a$、$b$、$c$ 分别为三角模糊集合的左侧、中央和右侧值。