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 argument is also provided) of the column to be added. The length of x must be equal to the number of constraints in lprec unless
indices
optional for sparse x. A numeric vector the same length as x of unique values from the set {0, ..., m} where m is the number of constraints in lprec; x[i] is entered into constraint indices[i]
Value
a logical value is invisibly returned: TRUE indicates that the operation was successful and FALSE indicates that an error occurred.
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.