我想执行一个元素乘法,将两个列表乘以 Python 中的值,就像我们可以在 Matlab 中那样。
这就是我在 Matlab 中的做法。
a = [1,2,3,4] b = [2,3,4,5] a .* b = [2, 6, 12, 20]
对于from和from的每种组合x * y,列表推导式将给出 16 个列表条目。不确定如何映射这个。x``a``y``b
x * y
x``a``y``b
如果有人对为什么感兴趣,我有一个数据集,想将它乘以Numpy.linspace(1.0, 0.5, num=len(dataset)) =).
Numpy.linspace(1.0, 0.5, num=len(dataset)) =)
使用与zip(): 混合的列表理解。
zip()
[a*b for a,b in zip(lista,listb)]