我可以在纸浆目标中求解两个矩阵倍数

发布于 2025-01-18 12:09:55 字数 692 浏览 0 评论 0原文

我是编程中编写代码的新手。 我在 Python 纸浆库中编写客观代码时遇到问题,并且无法解决其错误。 我向 python 代码写入一个对数表达式,它是两个矩阵的倍数。 我的问题的形式和我的代码如下。 请帮我。

from pulp import *

m = LpVariable('m', lowBound=0, cat='Integer')
n = LpVariable('n', lowBound=0, cat='Integer')

# --------------------------------------- decision variable

x = LpVariable.matrix("x",(range(m),range(n)),0,1,cat = 'Binary')
P = LpVariable.matrix("P",(range(m),range(n)),cat = 'Integer')
G = LpVariable.matrix("G",(range(m),range(n)),cat = 'Integer')
model = pulp.lpDot(P, G)
print(model, type(model)) 
   

I am a novice in writing code in programing.
I'm having trouble writing a objective code in the Python pulp library and I can't solve its error.
I write to python code a logarithm expression that is a multiple of two matrices.
The form of my problem and my code are as follows.
please help me.

from pulp import *

m = LpVariable('m', lowBound=0, cat='Integer')
n = LpVariable('n', lowBound=0, cat='Integer')

# --------------------------------------- decision variable

x = LpVariable.matrix("x",(range(m),range(n)),0,1,cat = 'Binary')
P = LpVariable.matrix("P",(range(m),range(n)),cat = 'Integer')
G = LpVariable.matrix("G",(range(m),range(n)),cat = 'Integer')
model = pulp.lpDot(P, G)
print(model, type(model)) 
   

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文