Excel的模糊逻辑?

发布于 2025-02-01 15:35:17 字数 359 浏览 0 评论 0 原文

我试图在VBA编程,但后来我注意到这种编程语言是不可能的。然后我在Google中搜索,但是在特殊的梯形模型中,以任何形式的Excel(sheets Formels或vba)以特殊的梯形模型来实现模糊逻辑的任何答案。

您是否有任何想法,如果可以在Excel中实现或使用此逻辑?

这就是我对模糊模型的意思:

I tried to program it in VBA, but then I noted it was not possible with this programming language. Then I was searching in Google, but I don't find any answer about implementing Fuzzy Logic, in special the trapezoidal model, in any art of form of Excel (Sheets formels or VBA).

Do you have any idea, if this logic can be implemented or used in Excel?

This is what I mean about Fuzzy Models:
http://www.dma.fi.upm.es/recursos/aplicaciones/logica_borrosa/web/fuzzy_inferencia/funpert_en.htm

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心舞飞扬 2025-02-08 15:35:17

只是为了好玩而尝试,但是类似的事情可能是一个开始。获得Y值的公式只是IFS:

=IF(OR(A10<$B$3;A10>$B$6);0;IF(A10<$B$4;(A10-$B$3)/($B$4-$B$3);IF(A10<$B$5;1;($B$6-A10)/($B$6-$B$5))))

enter image description here

Just tried for fun but something like this could be a start. The formula to get Y values is just IFS:

=IF(OR(A10<$B$3;A10>$B$6);0;IF(A10<$B$4;(A10-$B$3)/($B$4-$B$3);IF(A10<$B$5;1;($B$6-A10)/($B$6-$B$5))))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文