Reverse - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


ArrayTools

  

Reverse

  

reverse the entries of a Matrix, Vector, or Array

 

Calling Sequence

Parameters

Options

Description

Examples

Compatibility

Calling Sequence

Reverse(A)

Reverse(A,dims)

Parameters

A

-

Matrix, Vector, or Array

dims

-

(optional) integer or list of integers

Options

• 

inplace : (optional) true or false, with default false

Description

• 

The Reverse command reverses the elements of a Matrix, Vector, or Array into a new Matrix, Vector, or Array of the same shape.

• 

When the option dims is given, it specifies the dimension or dimensions to be reversed.

• 

When inplace=true, the reversal of elements is performed in-place.

Examples

> 

with⁡ArrayTools:

> 

A≔Array⁡1,2,3,4

A≔1234

(1)
> 

Reverse⁡A

4321

(2)
> 

B≔Vector⁡a,b,c,d,e

B≔abcde

(3)
> 

Reverse⁡B,inplace:

> 

B

edcba

(4)

Compatibility

• 

The ArrayTools:-Reverse command was introduced in Maple 2019.

• 

For more information on Maple 2019 changes, see Updates in Maple 2019.

• 

The ArrayTools:-Reverse command was updated in Maple 2023.

• 

The dims option was introduced in Maple 2023.

• 

For more information on Maple 2023 changes, see Updates in Maple 2023.

See Also

ArrayTools

ArrayTools[Alias]