std - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


convert/std

convert to standard form for simplex manipulation

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

convert(C, std)

Parameters

C

-

set or list of linear equations and inequalities

Description

• 

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).

Examples

> 

with⁡simplex&colon;

> 

convert⁡4≤3⁢x+4⁢y&comma;5≤4⁢x+3⁢y&comma;std

−4⁢x−3⁢y≤−5&comma;−3⁢x−4⁢y≤−4

(1)

See Also

convert/stdle

simplex/standardize