array_length_2d


Description

With this function you can get the length (number of entries) of a the second dimension of an array. You supply the entry number for the first dimension and the function will return the number of second dimension entries that the array has (to find the length of the first dimension use the function array_height_2D). The function will return 0 if the variable given is not an array or 1 if the variable is a 1D array (as there is still 1 row).


Syntax:

array_length_2d(array_index, n);

Argument Description
array_index The index of the array to check.
n The entry of the array to get the length of.

Returns:

Real


Example:

for (var i = 0; i < array_height_2d(a); ++i;)
   {
   for (var j = 0; j < array_length_2d(a, i); ++j;)
      {
      a[i, j] = -1;
      }
   }

The above code will loop through a 2D array and set each entry to -1.