在 Yuka js 库中,LeftSCurveFuzzySet
的 midpoint
表示模糊集合左 S 型曲线的中点。
const midpoint = fuzzySet.midpoint;
fuzzySet
:一个 LeftSCurveFuzzySet
对象。返回一个代表模糊集合左 S 型曲线中点的数字。
import { LeftSCurveFuzzySet } from 'yuka';
const fuzzySet = new LeftSCurveFuzzySet(0, 10, 5);
const midpoint = fuzzySet.midpoint;
console.log(midpoint); // 输出 2.5
LeftSCurveFuzzySet