1
cherbim 2019-08-13 20:56:52 +08:00
not enough arguments for format string
这个圈起来,期末考试要考,话说你知道这个报错啥意思么 |
2
cherbim 2019-08-13 21:02:45 +08:00
最后一行你要传递三个参数,虽然三个参数相同,那也不能省略
|
3
necomancer 2019-08-13 21:16:54 +08:00
B = np.random.randint(0,q,(m, n))
s = np.random.randint(0,q,(N, n)) e = np.random.randint(0,q,(N, m)) b = np.einsum('ij,...j->...i', B, s) + e b -> (N, m) |