考虑生成表格的函数F[x;y]
。我也有两个清单; xList:[x1;x2;x3]
和yList:[y1;y2;y3]
。进行F[x1;y1],F[x1;y2],F[x1;y3],F[x2;y1],...,
简单逗号连接从而生成一个大表的最佳方法是什么?
答案 0 :(得分:4)
您已经询问了参数列表的叉积,所以正确的答案是
raze F ./: xList cross yList
答案 1 :(得分:3)
根据您正在做的事情,您可能希望查看让您的函数在x的整个列表和整个y列表上运行并返回一个表,而不是每个对,然后返回一个表列表必须被夷为平地。性能影响可能很大,例如见下文
q)g:{x?y} //your core operation
q)//this takes each pair of x,y, performs an operation and returns a table for each
q)//which must then be flattened with raze
q)fm:{flip `x`y`res!(x;y; enlist g[x;y])}
q)//this takes all x, y at once and returns one table
q)f:{flip `x`y`res!(x;y;g'[x;y])}
q)//let's set a seed to compare answers
q)\S 1
q)\ts do[10000;rm:raze fm'[x;y]]
76 2400j
q)\S 1
q)\ts do[10000;r:f[x;y]]
22 2176j
q)rm~r
1b
答案 2 :(得分:1)
设置我们的示例
q)f:{([] total:enlist x+y; x:enlist x; y:enlist y)}
q)x:1 2 3
q)y:4 5 6
展示F [x1; y1]
q)f[1;4]
total x y
---------
5 1 4
q)f[2;5]
total x y
---------
7 2 5
使用多价应用运算符和每个'应用于每对参数。
q)raze .'[f;flip (x;y)]
total x y
---------
5 1 4
7 2 5
9 3 6
答案 3 :(得分:0)
使用each-both
实现此目标的另一种方法:
x: 1 2 3
y: 4 5 6
f:{x+y}
f2:{ a:flip x cross y ; f'[a 0;a 1] }
f2[x;y]
5j, 6j, 7j, 6j, 7j, 8j, 7j, 8j, 9j