convert/std
convert to standard form for simplex manipulation
Calling Sequence
Parameters
Description
Examples
convert(C, std)
C
-
set or list of linear equations and inequalities
The convert(C, std) function returns a set (or list) of constraints obtained by moving all constants to the right-hand side of the equation (inequality) for each constraint in C.
No attempt is made to represent equations by inequalities.
Note that inequalities of the form >= are automatically transformed by Maple into the form <=.
This function is part of the simplex package and can only be used after performing the command with(simplex).
withsimplex:
convert4≤3x+4y,5≤4x+3y,std
−4x−3y≤−5,−3x−4y≤−4
See Also
convert/stdle
simplex/standardize
Download Help Document