Length/Size of one of the sub-arrays of a multi-dim array
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-07-13
08:44 AM
- last edited on
‎2021-09-14
09:00 AM
by
Noemi Balogh
Is there a way to get the length/size of a sub-array of a multi-dimensional array?
DIM myArray[][] myArray[1][1] = 500 myArray[1][2] = 510 myArray[2][1] = 600 myArray[2][2] = 610 myArray[2][3] = 620 myArray[3][1] = 700 myArray[3][2] = 710 myArray[3][3] = 720 myArray[3][4] = 730VARDIM1(myArray[1])
I tried VARDIM2(myArray[1]) also but it doesn't give the required output.
- Labels:
-
Library (GDL)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-07-13 08:48 AM
Must be VARDIM1(myArray) and VARDIM2(myArray)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-07-13 08:52 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-07-13 09:04 AM
If you just need to find out it is one-dimensional or two dimensional array (i.e. one bracket or two brackets), make some sort of check:
something=1
IF VARDIM2(myArray) THEN something=2
I didn't try it, but hope it will work this way.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-07-13 09:07 AM
dushyant wrote:What do you call sub-array? Could you refer to GDL manual page about (and provide AC version)? Because one of us does not understand it correct.
Because I need the size of the sub-array myArray[1] (that is the value 2 in my example) and not the entire parent array myArray
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-07-13 09:15 AM
Podolsky wrote:Yes, but I don't need that.
So, VARDIM1(myArray) will give you 4 and VARDIM2(myArray) will give you 3.
By sub-array, I mean this array: myArray[1]
For your understanding, other sub-arrays here are: myArray[2], myArray[3]
The main/parent array of these sub-arrays being myArray
myArray[1] is an array having two items: myArray[1][1] and myArray[1][2] , so its size is 2. I want this '2' as the size value of the array myArray[1].
Hope that clarifies it for you Podolsky.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-07-13 09:25 AM
Podolsky wrote:
So, VARDIM1(myArray) will give you 4 and VARDIM2(myArray) will give you 3.
Actually in this case it is VARDIM1(myArray) = 3 and VARDIM2(myArray) = 4.
It is simply the dimensional size of your array - 3x4.
I am no expert on arrays, but I think because you have defined ... myArray[3][4] = 730
you have automatically defined all four fields for the second dimension in all 3 of the first dimension fields.
Does that make sense?
So although you have not defined ... myArray [1][3] or myArray [1][4], you have now by default and their values will be zero.
An array can have zero values (values of zero), but it can't have missing values.
Not sure if I have explained that well.
Barry.
Versions 6.5 to 27
i7-10700 @ 2.9Ghz, 32GB ram, GeForce RTX 2060 (6GB), Windows 10
Lenovo Thinkpad - i7-1270P 2.20 GHz, 32GB RAM, Nvidia T550, Windows 11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-07-13 09:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-07-13 09:29 AM
Derived Types
Variables and parameters can also be arrays, and parameters can be value lists of a simple type.
Arrays are one- or two-dimensional tables of numeric and/or string values, which can be accessed directly by indexes.
hth Dominic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-07-13 09:31 AM
Can dictionaries be looped through?