本文介绍了在算法不熟悉的符号 - 这是什么∀是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在阅读有关的算法(它是基于A *路径寻找算法),它包含的数学符号,我不熟悉:∀
I'm reading about an algorithm (it's a path-finding algorithm based on A*), and it contains a mathematical symbol I'm unfamiliar with: ∀
下面是上下文:
v(s) >= g(s) = min[s'∈pred(s)](v(s') + c(s', s)) ∀s != s[start]
注:项[括号]都应该是下标
Note: items in [brackets] are supposed to be subscript
有人可以解释∀的意义?
Can someone explain the meaning of ∀?
推荐答案
这就是FORALL(所有)的符号,如在的或统一code FORALL字符( \ U2200
,∀)。
That's the "forall" (for all) symbol, as seen in Wikipedia's table of mathematical symbols or the Unicode forall character (\u2200
, ∀).
这篇关于在算法不熟悉的符号 - 这是什么∀是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!