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 11:17 AM
But not when I actually view the preview or place the object.
I'm not sure if that is something that can just be ignored (I don't like ignoring error messages).
Must be something to do with the fact not all of the array values are set.
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 11:45 AM
Declare a local array (_myArray[][]) and set its size using a loop nominating every value as a default or as the actual array value. Then pass this local array to you array (myArray[][]) using parameter myArray = _myArray.
This means you have a fully declared array ready to then push your values to.
So basically you just missed the first step of forcing the array to exist with all cells holding memory.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2021-07-13 11:58 AM
Kristian, that's a way around it, yes. When you say 'local array' I believe you are comparing with the parameters array.. Anyway, all my arrays in this situation are locally created. This would mean so many repeated loops and copies of arrays.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2021-07-13 12:14 PM
dushyant wrote:Not so many just one to declare the whole thing (5 line loop statement) and then one populating the values with whatever logic you require. The master script of Infinite Openings is laden with declared and then populated arrays. The tool must dynamic shift between varying configurations via the catalogues and this issue was one that would break it many times until I finally ironed out the last not fully declared array, luckily some time ago.
This would mean so many repeated loops and copies of arrays.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2021-07-13 12:19 PM
It makes it generate faster because you have already set the full dimension in the first run of the loop.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2021-07-13 01:23 PM
Kristian wrote:Ok, thanks.
also when you do declare your array, invert the loop doing for example: for i = arrayDim1 to 1 step -1
It makes it generate faster because you have already set the full dimension in the first run of the loop.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2021-07-14 07:49 AM
Kristian wrote:Did not know this! But hell yes! Makes so much sense!
also when you do declare your array, invert the loop doing for example: for i = arrayDim1 to 1 step -1
It makes it generate faster because you have already set the full dimension in the first run of the loop.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2021-07-14 08:20 AM
SenecaDesignLLC wrote:I got that bit of gold directly from Gergely Feher (when I visited GSHQ) while he was advising me on ways to speed up Infinite Openings; it made a massive difference!
Kristian wrote:Did not know this! But hell yes! Makes so much sense!
also when you do declare your array, invert the loop doing for example: for i = arrayDim1 to 1 step -1
It makes it generate faster because you have already set the full dimension in the first run of the loop.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2021-07-14 10:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2021-07-14 10:57 AM
Podolsky wrote:What is 'Open Source GDL'? I thought there was only one GDL (by Graphisoft)
... Maybe just write all these rules in Open Source GDL post?