Posts by Raquel Santos • 55 points
4 posts
-
0
votes0
answers24
viewsQ: How to declare a binary variable in a robust optimization model?
I’m trying to declare a binary variable in a robust model, but every time I try the following error message appears: In @variable(ModeloD,b[A],lower_bound = 0,Bin): Unrecognized keyword argument…
juliaasked Raquel Santos 55 -
0
votes0
answers41
viewsQ: How to delimit the columns of a matrix in Julia
I have a Matrix 4:3 and would like to catch only 2:3. Is it possible to delimited using the Delimitedfiles command? How should I use? Q = convert(Matrix, ACT[2:3]) #Gostaria de omitir o 2:3…
juliaasked Raquel Santos 55 -
1
votes1
answer132
viewsQ: How to use the sum in Julia?
I need to put this objective function on Julia. Can someone help me? I started to do so, but I do not know how to join the objective functions as in the image above. using JuMP, Cbc Model1 =…
juliaasked Raquel Santos 55 -
4
votes1
answer90
viewsQ: Multiple dispatch in Julia language
I’m studying about the language Julia and read that the multiple dispatch allows the functions to be dispatched dynamically, but it’s still not clear to me.