Subtract
Subtract(a, b)
a - b
represents the subtraction of
b
froma
.
Examples
>> 5 - 32
>> a - b // FullForm"Plus(a, Times(-1, b))"
>> a - b - ca-b-c
>> a - (b - c)a-b+c
Implementation status
- ✅ - full supported
Subtract(a, b)
a - b
represents the subtraction of
b
froma
.
>> 5 - 32
>> a - b // FullForm"Plus(a, Times(-1, b))"
>> a - b - ca-b-c
>> a - (b - c)a-b+c