add.column {lpSolveAPI} | R Documentation |
Add a column to an lpSolve linear program model object.
add.column(lprec, x, indices)
lprec |
an lpSolve linear program model object. |
x |
a numeric vector containing the elements (only the nonzero elements if the |
indices |
optional for sparse |
This function adds an additional column to an lpSolve linear program model object. If multiple columns are to be added, performance can be improved by calling resize.lp
before adding the columns.
a NULL
value is invisibly returned.
Kjell Konis kjell.konis@me.com
https://lpsolve.sourceforge.net/5.5/index.htm
lps.model <- make.lp(4, 0)
add.column(lps.model, c(6,2,4,9))
add.column(lps.model, c(3,1,5), indices = c(1,2,4))