Length/Size of one of the sub-arrays of a multi-dim array
Options
- 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
‎2021-07-13
08:44 AM
Hi
Is there a way to get the length/size of a sub-array of a multi-dimensional array?
!gives 4, but I need the size of just myArray[1], which is 2
I tried VARDIM2(myArray[1]) also but it doesn't give the required output.
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:
- Labels:
-
Library (GDL)
32 REPLIES 32

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-07-14 11:16 AM
‎2021-07-14
11:16 AM
We started here (I started) the thread called Open Source GDL Project - where users can exchange GDL scripts, ideas, macros and develop new tools in open source manner.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-07-14 12:09 PM
‎2021-07-14
12:09 PM
Ah, okay.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-07-28 03:18 PM
‎2021-07-28
03:18 PM
I think this might help:
dict d dim EMPTYARRAY[] d.array[1].subarray = EMPTYARRAY d.array[2].subarray = EMPTYARRAY d.array[1].subarray[1] = 11 d.array[2].subarray[1] = 21 d.array[2].subarray[2] = 22 print d, vardim1(d.array[1].subarray), vardim1(d.array[2].subarray)
dushyant wrote:
In that case, multi-dim arrays might not be helpful for what I am trying to do. Thanks guys for the help.
Can dictionaries be looped through?
Péter Baksa
Software Engineer, Library
Graphisoft SE, Budapest
Software Engineer, Library
Graphisoft SE, Budapest
- « Previous
- Next »
- « Previous
- Next »