Session 3.2 Converting lists into arrays

> restart;

> a1:=[[1,2],[3,4],[5,6]];

[Maple Math]

> a:=array(a1);

The array command converts the list into a 3x2 matrix or array

[Maple Math]

> a[3,2];

Note the extraction of the element in the 3rd row, 2nd column

[Maple Math]