Unary Operators
Description
Examples
The unary operators in Maple are:
+
unary plus (prefix)
-
unary minus (prefix)
!
factorial (postfix)
not
logical not (prefix)
.
decimal point (prefix or postfix)
$
sequence operator (prefix)
&name
neutral operator (prefix)
Most unary operators can be made to apply element-wise by appending a tilde (~). See operator[elementwise] for details.
3;−3
3
−3
8!
40320
3.
0.3
`$`⁡1..10
1,2,3,4,5,6,7,8,9,10
FAIL
See Also
index[expression]
neutral
operators[binary]
operators[elementwise]
operators[nullary]
operators[precedence]
Download Help Document