该函数用于将JSON格式的模糊集转换为RightSCurveFuzzySet对象。
RightSCurveFuzzySet.fromJSON(jsonSet)
返回一个RightSCurveFuzzySet对象,该对象包含由JSON对象提供的数据。
const jsonSet = {
"setName": "Right SCurve Example",
"setMin": 0,
"setMax": 10,
"a": 3,
"c": 7
};
const set = RightSCurveFuzzySet.fromJSON(jsonSet);
JSON对象需要具备以下属性:
{
"setName": "Example Set",
"setMin": 0,
"setMax": 100,
"a": 30,
"c": 60
}