Pavithra Sreekumar
- 合計アクティビティ 18
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 6
アクティビティの概要
Pavithra Sreekumarさんの最近のアクティビティ-
Pavithra Sreekumarさんが投稿を作成しました:
Values of parts of objective function
回答済みHello! I am working on an optimization production planning problem, and my objective function is to minimize the total cost - for eg min (production_variable * production cost) + (inventory_varia...
-
Pavithra Sreekumarさんがコメントを作成しました:
Hi Mario, Thank you for your response! I was indeed wondering if Gurobi had a feature for solution analysis. Yes, since I am using Python, I will try the Pandas dataframe approach. Best Regards, Pa...
-
Pavithra Sreekumarさんがコメントを作成しました:
Hi Mario, I am able to retrieve the variable values after solving the problem with Gurobi(in each iteration). I want to write out these values(for each iteration/run of the loop) into a table so th...
-
Pavithra Sreekumarさんがコメントを作成しました:
Thanks a lot for your help Jaromil! Best Regards, Pavithra
-
Pavithra Sreekumarさんが投稿を作成しました:
Storing the output of an optimization model in a table for each iteration of a for loop
回答済みI currently have an optimization model in a for loop, and with each iteration, I am getting the values of three decision variables. I would like to store these values in the form of a table, someth...
-
Pavithra Sreekumarさんが投稿を作成しました:
Same results of optimization model for different function parameters - RHS of constraint?
回答済みI am trying to solve an optimization model and I have defined a function such that every time I implement the function ( for eg: def function(method) ) by entering a different value of "method", th...
-
Pavithra Sreekumarさんがコメントを作成しました:
Hello Jaromil, Thank you so much, this is exactly what I was trying to do! Best Regards, Pavithra
-
Pavithra Sreekumarさんがコメントを作成しました:
Please do let me know if you require more information. Thanks in advance for your help!
-
Pavithra Sreekumarさんがコメントを作成しました:
Hello Jaromil, Below is the entire code snippet and the respective output: CODE: grades = ["Grade A", "Grade B","Grade C","Grade D","Grade E"]times = np.arange(1,4)array = np.arange(30).reshape(3,1...
-
Pavithra Sreekumarさんが投稿を作成しました:
Assigning array columns as values for key in a tupledict
回答済みI have a tuple dict where the keys are of the following form : "Grade A, 1" : "Grade B, 1" : "Grade C, 1" : "Grade D, 1" : "Grade E, 1" : "Grade A, 2" : "Grade B, 2" : "Grade C, 2" : "Grade D, 2" :...