symbolic absolute value
b = Abs( a )
symbolic
Returns the absolute value b = abs(a) of a.
// some values ... x = Sym("0") y = Sym("-1") z = Sym("x*x+5") // ... and their absolute values Abs(x) Abs(y) Abs(z)
SymEngine: C++ library for fast symbolic manipulation.