| set.row {lpSolveAPI} | R Documentation | 
Set Row
Description
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   | 
xt | 
 a numeric vector containing the constraint coefficients (only the nonzero coefficients if   | 
indices | 
 optional for sparse   | 
Value
a NULL value is invisibly returned.
Author(s)
Kjell Konis kjell.konis@me.com
References
https://lpsolve.sourceforge.net/5.5/index.htm
Examples
lps.model <- make.lp(2, 4)
set.row(lps.model, 2, c(6,2,4,9))
set.row(lps.model, 1, c(3,1,5), indices = c(1,2,4))