Honglin An
- 合計アクティビティ 4
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 1
- サブスクリプション 1
投稿
Honglin Anによる最近のアクティビティ-
ValueError: Mismatching inner dimensions
回答済みimport numpy as npimport gurobipy as gpfrom gurobipy import *D = 10 F = 2 N = 5 H = np.random.random((N,D))-0.5R = np.random.random(N) - 0.5R = np.matmul(R.T,H)H = np.matmul(H.T,H)I = np.identity(F...