Partition - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


MmaTranslator[Mma]

  

Partition

  

return a list of non-overlapping lists

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Partition(arguments)

Parameters

arguments

-

Maple translation of the Mathematica command arguments

Description

• 

The Partition command returns a list of non-overlapping sublists of a specified length.

Examples

withMmaTranslatorMma:

Use the command with the Maple translation.

Partitiona,b,c,d,e,f,g,h,2

a,b,c,d,e,f,g,h

(1)

Alternatively, you can use the FromMma command with the evaluate option specified.

withMmaTranslator:

FromMma`Partition[{a, b, c, d, e, f, g, h}, 2]`,evaluate

a,b,c,d,e,f,g,h

(2)

See Also

MmaTranslator

MmaTranslator[FromMma]

MmaTranslator[Mma]

MmaTranslator[Mma][Split]