提问人:coolhand 提问时间:11/1/2023 更新时间:11/1/2023 访问量:24
R 中的模糊隶属函数
Fuzzy Membership Functions in R
问:
我遵循以下示例
https://www.rpubs.com/rcleoni/786100。
我想实现不同的成员函数,可在
https://search.r-project.org/CRAN/refmans/sets/html/fuzzyfuns.html
当我尝试使用示例中的函数时,它工作正常:fuzzy_partition
test = fuzzy_partition(varnames = c(low=0, medium=30, high=60), FUN=fuzzy_cone, radius=30)
但是,当我尝试传递不同的参数时,出现错误:FUN
# THIS COMPILES BUT ALL THE FUNCTIONS OVERLAP
...
test = fuzzy_partition(varnames = c(low=0, medium=30, high=60), FUN=fuzzy_trapezoid, corners=NULL, height=c(1,1))
...
plot(model)
如何传递适当的值以在类别中获取不同的隶属函数?low/medium/high
例如,尝试传递一个向量并不能给我所希望的:corners
test = fuzzy_partition(varnames = c(low=0, medium=30, high=60), FUN=fuzzy_trapezoid, corners=c(NULL, NULL, c(0,20, 40, 0)), height=c(1,1))
答: 暂无答案
上一个:使用相同半径时丢失模糊集
评论