Questions tagged «multiplying»

14
如何执行两个列表的按元素相乘?
我想执行元素明智的乘法,将两个列表按值在Python中相乘,就像我们在Matlab中可以做到的那样。 这就是我在Matlab中要做的。 a = [1,2,3,4] b = [2,3,4,5] a .* b = [2, 6, 12, 20] 对于from 和from的每个组合x * y,列表理解将给出16个列表条目。不确定如何映射。xayb 如果有人对此感兴趣,我有一个数据集,并想乘以Numpy.linspace(1.0, 0.5, num=len(dataset)) =)。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.