(/) symbolic division operator
c = Div( a, b ) c = a / b
symbolic, double, or integer
symbolic
Returns the quotient c = a / b.
It is mandatory, that at least one of the operands a or b is symbolic. Double and integer arguments are converted automatically to a symbolic representation, before the operation is carried out.
// create symbols Syms a b // quotient a / b a/b // quotient a / 1.23 a/1.23 // quotient 5 / b int32(5)/b | ![]() | ![]() |
SymEngine: C++ library for fast symbolic manipulation.