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).
with⁡simplex:
convert⁡4≤3⁢x+4⁢y,5≤4⁢x+3⁢y,std
−4⁢x−3⁢y≤−5,−3⁢x−4⁢y≤−4
See Also
convert/stdle
simplex/standardize
Download Help Document