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

Online Help

All Products    Maple    MapleSim


MmaTranslator[Mma]

  

Split

  

split a list into sublists

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Split(arguments)

Parameters

arguments

-

Maple translation of the Mathematica command arguments

Description

• 

The Split command splits a list into sublists containing runs of identical items.

Examples

withMmaTranslatorMma:

Use the command with the Maple translation.

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

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

(1)

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

withMmaTranslator:

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

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

(2)

See Also

MmaTranslator

MmaTranslator[FromMma]

MmaTranslator[Mma]

MmaTranslator[Mma][Partition]