Mathematica 如何把各子表内元素相乘?
问题描述:
Mathematica 如何把各子表内元素相乘?
如何把各子表内元素相乘?
例如:
输入:s1={{2,3,4},{a,b},{x,y,z}};
输出:s2={24,a*b*c,x*y*z}
答
使用Apply啊:
Times@@@s1