xpress.abs
| xpress.abs | 
  Purpose
 
Returns the absolute value of a given expression
  Synopsis
 
 a = xpress.abs (t) 
 
  Argument
 
| 
     t 
     | 
     Argument of the abs() function.
     | 
  Further information
 
Using Python's math library operator math.abs is only advisable when the argument is not an expression that depends on variables. Python's native abs operator is equivalent to xpress.abs for arguments that are functions of variables.
 
