unary - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Unary Operators

 

Description

Examples

Description

• 

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.

Examples

3;3

3

−3

(1)

8!

40320

(2)

3.

3.

(3)

0.3

0.3

(4)

`$`1..10

1,2,3,4,5,6,7,8,9,10

(5)

FAIL

FAIL

(6)

See Also

index[expression]

neutral

operators[binary]

operators[elementwise]

operators[nullary]

operators[precedence]