add.column {lpSolveAPI} | R Documentation |
Add Column
Description
Add a column to an lpSolve linear program model object.
Usage
add.column(lprec, x, indices)
Arguments
lprec |
an lpSolve linear program model object. |
x |
a numeric vector containing the elements (only the nonzero elements if the |
indices |
optional for sparse |
Details
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.
Value
a NULL
value is invisibly returned.
Author(s)
Kjell Konis kjell.konis@me.com
References
https://lpsolve.sourceforge.net/5.5/index.htm
See Also
Examples
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))