writeMps               package:linprog               R Documentation

_w_r_i_t_e _M_P_S _f_i_l_e_s

_D_e_s_c_r_i_p_t_i_o_n:

     This function writes MPS files - the standard format for Linear
     Programming problems.

_U_s_a_g_e:

     writeMps( file, cvec, bvec, Amat, name="LP" )

_A_r_g_u_m_e_n_t_s:

    file: a character string naming the file to write.

    cvec: vector c.

    bvec: vector b.

    Amat: matrix A.

    name: an optional name for the Linear Programming problem.

_D_e_t_a_i_l_s:

     The exported LP can be solved by running other software on this
     MPS file (e.g. 'lp_solve', see <URL:
     ftp://ftp.es.ele.tue.nl/pub/lp_solve>).

_A_u_t_h_o_r(_s):

     Arne Henningsen ahenningsen@agric-econ.uni-kiel.de

_S_e_e _A_l_s_o:

     'solveLP', 'readMps'

_E_x_a_m_p_l_e_s:

     ## example of Steinhauser, Langbehn and Peters (1992)
     ## Not run: library( linprog )

     ## Production activities
     cvec <- c(1800, 600, 600)  # gross margins
     names(cvec) <- c("Milk","Bulls","Pigs")

     ## Constraints (quasi-fix factors)
     bvec <- c(40, 90, 2500)  # endowment
     names(bvec) <- c("Land","Stable","Labor")

     ## Needs of Production activities
     Amat <- rbind( c(  0.7,   0.35,   0 ),
                    c(  1.5,   1,      3 ),
                    c( 50,    12.5,   20 ) )

     ## Write to MPS file
     writeMps( "steinh.mps", cvec, bvec, Amat, "Steinhauser" )

