作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 NestWhileList在它经常达到“最大评估次数”的情况下。得到一些古玩结果后,我仔细看看如何NestWhileList
对指定最大数量的结果使用react:
Table[{nmax,
Length@NestWhileList[
(* f: nesting function *) Identity,
(* initial state *) 1,
(* test function *) False &,
(* m: of arguments for test *) 1,
(* nmax: max # applications of f *) nmax,
(* n: extra evaluations *) 1]}, {nmax, 0, 2}];
ToString[TableForm[%,
TableHeadings -> {None, {"nmax", "output length"}}]]
nmax=1
单挑:这里
f
应用 2 次,而对于所有其他值,仅应用一次:
nmax output length
0 2
1 3
2 2
Table[{nmax,
Length@NestWhileList[
(* f: nesting function *) Identity,
(* initial state *) 1,
(* test function *) False&,
(* m: of arguments for test *) 1,
(* max: max # applications of f *) nmax]},{nmax,0,2}];
ToString[TableForm[%,TableHeadings->{None, {"nmax","output length"}}]]
Out[123]=
nmax output length
0 1
1 1
2 1
最佳答案
这没有意义,我很确定这只是一个错误。 NestWhile
同样受到折磨:
In[53]:= NestWhileList[# + 1 &, 1, False &, 1, 1, 1]
Out[53]= {1, 2, 3}
In[54]:= NestWhile[# + 1 &, 1, False &, 1, 1, 1]
Out[54]= 3
NestWhileList
的变通方法功能:
myNestWhileList[f_, expr_, test_, m_, max_, n_] :=
Module[{nwl},
nwl = NestWhileList[f, expr, test, m, max];
Join[nwl, Rest[NestList[f, Last[nwl], n]]]
]
In[75]:= myNestWhileList[# + 1 &, 1, False &, 1, 1, 1]
Out[75]= {1, 2}
NestWhileList
的完全通用替代品。 ,但如果有必要,它应该很容易概括。
关于wolfram-mathematica - 数学 : Grokking 'maximal number of evaluations' argument for `NestWhileList` ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4120786/
动力:我是在 python 中寻找一些能让我得到的东西 f([1,2,3]) == [[1,2,3], [2,3], [3]] 在 clojure 中,这只是 (nest rest #(not (em
我正在使用 NestWhileList在它经常达到“最大评估次数”的情况下。得到一些古玩结果后,我仔细看看如何NestWhileList对指定最大数量的结果使用react: Table[{nmax,
我是一名优秀的程序员,十分优秀!