representativeValue
是属于 RightSCurveFuzzySet(右S型模糊集)对象的属性,它代表了该模糊集的代表值。
fuzzySet.representativeValue
无
representativeValue
: 代表该模糊集的数值。// 引入 Yuka 库
const { RightSCurveFuzzySet } = require('yuka');
const fuzzySet = new RightSCurveFuzzySet(10, 20, 30);
console.log(fuzzySet.representativeValue); // 输出 20
在右S型模糊集中,该模糊集的代表值为左端点和中间点的平均值。