Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 590 Bytes

File metadata and controls

34 lines (20 loc) · 590 Bytes

Numerator

Numerator(expr)

gives the numerator in expr. Numerator collects expressions with non negative exponents.

See

Examples

>> Numerator(a / b)
a
>> Numerator(2 / 3)
2
>> Numerator(a + b)
a + b

Implementation status

  • ✅ - full supported

Github