set.mat | R Documentation |
Set the value of a single matrix element in an lpSolve linear program model object.
set.mat(lprec, i, j, value)
lprec |
an lpSolve linear program model object. |
i |
a single numeric value from the set |
j |
a single numeric value from the set |
value |
a single numeric value. |
a NULL
value is invisibly returned.
Kjell Konis kjell.konis@me.com
https://lpsolve.sourceforge.net/5.5/index.htm
resize.lp
lps.model <- make.lp(4, 2)
x <- c(6,2,4,9)
set.column(lps.model, 2, x)
y <- c(3,1,5)
ind <- c(1,2,4)
set.column(lps.model, 1, y, ind)
set.constr.type(lps.model, rep("<=", 4))
set.mat(lps.model, 3, 2, 4.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.