Set a column in an lpSolve linear program model object.
Usage
set.row(lprec, row, xt, indices)
Arguments
lprec
an lpSolve linear program model object.
row
a single numeric value from the set {1, ..., m} (where m is the number of constraints in lprec) specifying which column to set.
xt
a numeric vector containing the constraint coefficients (only the nonzero coefficients if indices is also given). The length of xt must be equal to the number of decision variables in lprec unless indices
indices
optional for sparse xt. A numeric vector the same length as xt of unique values from the set {1, ..., n} where n is the number of decision variables in lprec; xt[i] is set in column indices[i]
Value
a logical value indicating whether the row was successfully set.