Go to the first, previous, next, last section, table of contents.


array-dimension [Function]

array-dimension array axis-number => dimension

Arguments and Values::

array---an array.

axis-number---an integer greater than or equal to zero and less than the rank of the array.

dimension---a non-negative integer.

Description::

array-dimension returns the axis-number dimension_1 of array. (Any fill pointer is ignored.)

Examples::

 (array-dimension (make-array 4) 0) =>  4
 (array-dimension (make-array '(2 3)) 1) =>  3

Affected By::

None.

See Also::

section array-dimensions [Function] , section length [Function]

Notes::

 (array-dimension array n) == (nth n (array-dimensions array))


Go to the first, previous, next, last section, table of contents.