J中给定长度的所有布尔可能性

时间:2019-03-13 01:43:22

标签: j

我想要最简单的动词,该动词给出给定长度的所有布尔列表的列表。

例如

   f=. NB. Insert magic here

   f 2
0 0
0 1
1 0
1 1

   f 3
0 0 0
0 0 1
0 1 0
0 1 1
1 0 0
1 0 1
1 1 0
1 1 1

1 个答案:

答案 0 :(得分:3)

此功能最近已添加到stats/base插件中。

   load 'stats/base/combinatorial'  NB. or just load 'stats'
   permrep 2    NB. permutations of size 2 from 2 items with replacement
0 0
0 1
1 0
1 1
   3 permrep 2  NB. permutations of size 3 from 2 items with replacement
0 0 0
0 0 1
0 1 0
0 1 1
1 0 0
1 0 1
1 1 0
1 1 1
   permrep      NB. display definition of permrep
$:~ :(# #: i.@^~)

使用Qt IDE,您可以通过在“术语”窗口中输入permrep来查看定义open 'stats/base/combinatorial'和朋友的脚本。或者,您可以view it on Github

要按照问题中的说明定义f,以下内容就足够了:

   f=: permrep&2
   f=: (# #: i.@^~)&2  NB. alternatively
   f 3
0 0 0
0 0 1
0 1 0
0 1 1
1 0 0
1 0 1
1 1 0
1 1 1