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

Online Help

@

the composition operator

@@

the repeated composition operator

 

Calling Sequence

Parameters

Description

Composition Examples

Thread Safety

Calling Sequence

f @ g

f @@ n

Parameters

f, g

-

any functions

n

-

integer

Description

• 

  is the function composition operator.

• 

  is the repeated function composition operator.

• 

If n is negative, the  table is checked to see if it has an entry for f.  That is, if , then .

• 

Composition also applies to procedures.  However, given two procedures f and g, the composition  is of type function, not type procedure.  For more information, see type/function and type/procedure.

Composition Examples

(sin@cos)(x);

(1)

(sin@arcsin)(x);

(2)

sin@arcsin;

(3)

simplify((3));

(4)

sin@@0;

(5)

sin@@1;

(6)

(sin@@2)(x);

(7)

cos@@(-1);

(8)

(D@@2)(ln);

(9)

Thread Safety

• 

The @ and @@ operators are thread-safe as of Maple 15.

• 

For more information on thread safety, see index/threadsafe.

See Also

combinat[composition]

invfunc

operator

simplify

type/composition

 


Download Help Document