在为一个变量运行python时,我收到以下错误,python停止并且未创建输出文件
VisibleDeprecationWarning:布尔索引与索引数组不匹配 沿维度0; dimension是4但对应的布尔维度 是2
以下是显示错误
的代码部分cons = ({'type':'ineq',
'fun': lambda x: x[:num_products]},{'type':'ineq',
'fun': lambda x: np.array(np.sum(rho_L04.dot(x[:num_products])) -np.sum(S_L04[:,store_count]))},{'type':'eq',
'fun': lambda x: x[S_L04[:,store_count]==0]})
那么有人可以帮我解决这个问题吗?