我想完成以下问题在numpy中尝试做的事情:
Numpy matrix multiplication of 2d matrix to give 3d matrix
我已经编写了以下代码(根据numpy案例的建议),假设广播也在theano中运行:
y = T.dmatrix('y')
x = T.dmatrix('x')
z = x[...,None]*y[:,None,:]
但它引发了以下错误:
AsTensorError: ('Cannot convert Ellipsis to TensorType', <type 'ellipsis'>)
答案 0 :(得分:1)
根据@Divakar的评论,将其更改为
JScrollPane scrollPane = new JScrollPane(jPanel);
只需将其作为答案发布,以便人们知道答案就是这样。