<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Length/Size of one of the sub-arrays of a multi-dim array in GDL</title>
    <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283386#M3409</link>
    <description>&lt;BLOCKQUOTE&gt;dushyant wrote:&lt;BR /&gt;
Because I need the size of the sub-array &lt;B&gt;myArray[1]&lt;/B&gt; (that is the value 2 in my example) and not the entire parent array &lt;B&gt;myArray&lt;/B&gt;
&lt;/BLOCKQUOTE&gt;

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.</description>
    <pubDate>Tue, 13 Jul 2021 07:07:37 GMT</pubDate>
    <dc:creator>Podolsky</dc:creator>
    <dc:date>2021-07-13T07:07:37Z</dc:date>
    <item>
      <title>Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283382#M3405</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;Hi&lt;BR /&gt;Is there a way to get the length/size of a sub-array of a multi-dimensional array? &lt;BR /&gt;
&lt;PRE&gt;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] = 730&lt;/PRE&gt;
VARDIM1(myArray[1]) &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;!gives 4, but I need the size of just myArray[1], which is 2&lt;BR /&gt;&lt;BR /&gt;I tried VARDIM2(myArray[1]) also but it doesn't give the required output.&lt;/DIV&gt;</description>
      <pubDate>Tue, 14 Sep 2021 07:00:09 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283382#M3405</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2021-09-14T07:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283383#M3406</link>
      <description>Why VARDIM1(myArray[1])?&lt;BR /&gt;
&lt;BR /&gt;
Must be VARDIM1(myArray) and VARDIM2(myArray)</description>
      <pubDate>Tue, 13 Jul 2021 06:48:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283383#M3406</guid>
      <dc:creator>Podolsky</dc:creator>
      <dc:date>2021-07-13T06:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283384#M3407</link>
      <description>Because I need the size of the sub-array &lt;B&gt;myArray[1]&lt;/B&gt; (that is the value 2 in my example) and not the entire parent array &lt;B&gt;myArray&lt;/B&gt;</description>
      <pubDate>Tue, 13 Jul 2021 06:52:45 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283384#M3407</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2021-07-13T06:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283385#M3408</link>
      <description>So, VARDIM1(myArray) will give you 4 and VARDIM2(myArray) will give you 3.&lt;BR /&gt;
&lt;BR /&gt;
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:&lt;BR /&gt;
&lt;BR /&gt;
something=1&lt;BR /&gt;
IF VARDIM2(myArray) THEN something=2&lt;BR /&gt;
&lt;BR /&gt;
I didn't try it, but hope it will work this way.</description>
      <pubDate>Tue, 13 Jul 2021 07:04:51 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283385#M3408</guid>
      <dc:creator>Podolsky</dc:creator>
      <dc:date>2021-07-13T07:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283386#M3409</link>
      <description>&lt;BLOCKQUOTE&gt;dushyant wrote:&lt;BR /&gt;
Because I need the size of the sub-array &lt;B&gt;myArray[1]&lt;/B&gt; (that is the value 2 in my example) and not the entire parent array &lt;B&gt;myArray&lt;/B&gt;
&lt;/BLOCKQUOTE&gt;

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.</description>
      <pubDate>Tue, 13 Jul 2021 07:07:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283386#M3409</guid>
      <dc:creator>Podolsky</dc:creator>
      <dc:date>2021-07-13T07:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283387#M3410</link>
      <description>&lt;BLOCKQUOTE&gt;Podolsky wrote:&lt;BR /&gt;So, VARDIM1(myArray) will give you 4 and VARDIM2(myArray) will give you 3.&lt;/BLOCKQUOTE&gt;

Yes, but I don't need that.&lt;BR /&gt;
&lt;BR /&gt;
By sub-array, I mean this array: &lt;B&gt;myArray[1]&lt;/B&gt;    &lt;BR /&gt;
For your understanding, other sub-arrays here are: &lt;B&gt;myArray[2]&lt;/B&gt;, &lt;B&gt;myArray[3]&lt;/B&gt;&lt;BR /&gt;
The main/parent array of these sub-arrays being &lt;B&gt;myArray&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;myArray[1]&lt;/B&gt; is an array having two items:  &lt;B&gt;myArray[1][1]&lt;/B&gt;  and &lt;B&gt;myArray[1][2]&lt;/B&gt;   , so its size is &lt;B&gt;2&lt;/B&gt;.  I want this '2' as the size value of the array myArray[1].&lt;BR /&gt;
&lt;BR /&gt;
Hope that clarifies it for you Podolsky.</description>
      <pubDate>Tue, 13 Jul 2021 07:15:44 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283387#M3410</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2021-07-13T07:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283388#M3411</link>
      <description>&lt;BLOCKQUOTE&gt;Podolsky wrote:&lt;BR /&gt;
So, VARDIM1(myArray) will give you 4 and VARDIM2(myArray) will give you 3.
&lt;/BLOCKQUOTE&gt;

&lt;BR /&gt;
Actually in this case it is VARDIM1(myArray) = 3 and VARDIM2(myArray) = 4.&lt;BR /&gt;
&lt;BR /&gt;
It is simply the dimensional size of your array - 3x4.&lt;BR /&gt;
&lt;BR /&gt;
I am no expert on arrays, but I think because you have defined ... myArray[3][4] = 730&lt;BR /&gt;
you have automatically defined all four fields for the second dimension in all 3 of the first dimension fields.&lt;BR /&gt;
&lt;BR /&gt;
Does that make sense?&lt;BR /&gt;
&lt;BR /&gt;
So although you have not defined ... myArray [1][3] or myArray [1][4], you have now by default and their values will be zero.&lt;BR /&gt;
&lt;BR /&gt;
An array can have zero values (values of zero), but it can't have missing values.&lt;BR /&gt;
&lt;BR /&gt;
Not sure if I have explained that well.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
      <pubDate>Tue, 13 Jul 2021 07:25:47 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283388#M3411</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2021-07-13T07:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283389#M3412</link>
      <description>Barry, so you mean it builds like a matrix of 3x4 cells and assigns 0 to any non-assigned cells?</description>
      <pubDate>Tue, 13 Jul 2021 07:28:49 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283389#M3412</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2021-07-13T07:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283390#M3413</link>
      <description>Sub-arrays all have the same length. two dimensional array are just tables with n x m cells.
&lt;BLOCKQUOTE&gt;Derived Types&lt;BR /&gt;
Variables and parameters can also be arrays, and parameters can be value lists of a simple type.&lt;BR /&gt;
&lt;BR /&gt;
Arrays are one- or two-dimensional tables of numeric and/or string values, which can be accessed directly by indexes.&lt;/BLOCKQUOTE&gt;

&lt;A href="http://gdl.graphisoft.com/reference-guide/rules-of-gdl-syntax" target="_blank"&gt;&lt;/A&gt;&lt;S&gt;&lt;A href="http://gdl.graphisoft.com/reference-guide/rules-of-gdl-syntax" target="_blank"&gt;&lt;/A&gt;&lt;A href="&amp;lt;/s&amp;gt;&amp;lt;LINK_TEXT text=&amp;quot;http://gdl.graphisoft.com/reference-gui ... gdl-syntax&amp;quot;&amp;gt;http://gdl.graphisoft.com/reference-guide/rules-of-gdl-syntax&amp;lt;/LINK_TEXT&amp;gt;&amp;lt;e&amp;gt;"&gt;&lt;/A&gt;&lt;/S&gt;&lt;LINK_TEXT text="http://gdl.graphisoft.com/reference-gui ... gdl-syntax"&gt;http://gdl.graphisoft.com/reference-guide/rules-of-gdl-syntax&lt;/LINK_TEXT&gt;&lt;E&gt;&lt;/E&gt;&lt;BR /&gt;
&lt;BR /&gt;
hth Dominic</description>
      <pubDate>Tue, 13 Jul 2021 07:29:38 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283390#M3413</guid>
      <dc:creator>Dominic Wyss</dc:creator>
      <dc:date>2021-07-13T07:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283391#M3414</link>
      <description>In that case, multi-dim arrays might not be helpful for what I am trying to do. Thanks guys for the help.&lt;BR /&gt;
&lt;BR /&gt;
Can dictionaries be looped through?</description>
      <pubDate>Tue, 13 Jul 2021 07:31:52 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283391#M3414</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2021-07-13T07:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283392#M3415</link>
      <description>&lt;BLOCKQUOTE&gt;dushyant wrote:&lt;BR /&gt;
Barry, so you mean it builds like a matrix of 3x4 cells and assigns 0 to any non-assigned cells?
&lt;/BLOCKQUOTE&gt;

I think so.&lt;BR /&gt;
&lt;BR /&gt;
If you created an array in the parameter list it would look like this.&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
      <pubDate>Tue, 13 Jul 2021 07:34:43 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283392#M3415</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2021-07-13T07:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283393#M3416</link>
      <description>Got it Barry, thanks.&lt;BR /&gt;
&lt;BR /&gt;
Just wondering if we can loop through the values of a dictionary, like we do through an array:&lt;BR /&gt;
FOR i = 1 TO VARDIM1(myArray) ...</description>
      <pubDate>Tue, 13 Jul 2021 07:36:57 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283393#M3416</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2021-07-13T07:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283394#M3417</link>
      <description>&lt;BLOCKQUOTE&gt;dushyant wrote:&lt;BR /&gt;
Got it Barry, thanks.&lt;BR /&gt;
&lt;BR /&gt;
Just wondering if we can loop through the values of a dictionary, like we do through an array:&lt;BR /&gt;
FOR i = 1 TO VARDIM1(myArray) ...
&lt;/BLOCKQUOTE&gt;

&lt;BR /&gt;
I have not delved into DICTIONARY yet so I have no idea.&lt;BR /&gt;
&lt;BR /&gt;
You can loop through the array as you have shown but just ignore if the value is zero.&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
      <pubDate>Tue, 13 Jul 2021 07:41:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283394#M3417</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2021-07-13T07:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283395#M3418</link>
      <description>&lt;BLOCKQUOTE&gt;Barry wrote:&lt;BR /&gt;
You can loop through the array as you have shown but just ignore if the value is zero.
&lt;/BLOCKQUOTE&gt;

&lt;BR /&gt;
Something like this?&lt;BR /&gt;
This will just print the values in each dimension but not the zero values.&lt;BR /&gt;

&lt;PRE&gt;FOR n = 1 TO VARDIM1(myArray)
	FOR i = 1 TO VARDIM2(myArray)
		IF myArray&lt;N&gt;&lt;I&gt; &amp;lt;&amp;gt; 0 THEN
			PRINT myArray&lt;N&gt;&lt;I&gt;
		ENDIF
	NEXT i
NEXT n
&lt;/I&gt;&lt;/N&gt;&lt;/I&gt;&lt;/N&gt;&lt;/PRE&gt;

Barry.</description>
      <pubDate>Tue, 13 Jul 2021 07:48:39 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283395#M3418</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2021-07-13T07:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283396#M3419</link>
      <description>Barry, I had tried that but it seems to still scan through the part inside the IF statement (even if the condition is false) and gives an error: 
&lt;PRE&gt;Uninitialized array element at index: [1][3]   &lt;/PRE&gt;
(as I didn't set [1][3], but only up to [1][2])</description>
      <pubDate>Tue, 13 Jul 2021 07:52:04 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283396#M3419</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2021-07-13T07:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283397#M3420</link>
      <description>&lt;BLOCKQUOTE&gt;In that case, multi-dim arrays might not be helpful for what I am trying to do. Thanks guys for the help.&lt;BR /&gt;
&lt;BR /&gt;
Can dictionaries be looped through?&lt;/BLOCKQUOTE&gt;

No. Unfortunately not.&lt;BR /&gt;
and keys can't be reached by variables... I suggested it, but graphisoft refused</description>
      <pubDate>Tue, 13 Jul 2021 08:05:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283397#M3420</guid>
      <dc:creator>Dominic Wyss</dc:creator>
      <dc:date>2021-07-13T08:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283398#M3421</link>
      <description>Just to clear the situation. Do not exist any sub-arrays. Exist one-dimensional arrays: myArray[], myArray[1], myArray[2], myArray[3], myArray[4]...&lt;BR /&gt;
And two-dimensional arrays: myArray[][], myArray[1][1], myArray[1][2], myArray[2][1], myArray[2][2]...&lt;BR /&gt;
If you refer two-dimensional array in your script as one dimensional - script won't work and will give an error. That means if you have let say 3x4 array: myArray[3][4] you cannot use anywhere in the script myArray[1]&lt;BR /&gt;
&lt;BR /&gt;
And, by the way, three-dimensional arrays in mathematic called 'matrix' - like movie. It's when you have z to your array. Just imagine - array tables stack on top of each other. Or multipage excel spreadsheet...</description>
      <pubDate>Tue, 13 Jul 2021 08:20:14 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283398#M3421</guid>
      <dc:creator>Podolsky</dc:creator>
      <dc:date>2021-07-13T08:20:14Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283399#M3422</link>
      <description>&lt;BLOCKQUOTE&gt;dushyant wrote:&lt;BR /&gt;
Barry, I had tried that but it seems to still scan through the part inside the IF statement (even if the condition is false) and gives an error: 
&lt;PRE&gt;Uninitialized array element at index: [1][3]   &lt;/PRE&gt;
(as I didn't set [1][3], but only up to [1][2])
&lt;/BLOCKQUOTE&gt;

&lt;BR /&gt;
This is all I have written in the Master script.&lt;BR /&gt;
No parameters in the parameter list and nothing in any other script.&lt;BR /&gt;
The just open the 2D or 3D preview and it will print ... 500, 510, 600, 610, 700, 710, 720, 730&lt;BR /&gt;
No error messages that I see.&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
      <pubDate>Tue, 13 Jul 2021 08:28:06 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283399#M3422</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2021-07-13T08:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283400#M3423</link>
      <description>Strange, I get this error..</description>
      <pubDate>Tue, 13 Jul 2021 08:34:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283400#M3423</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2021-07-13T08:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Length/Size of one of the sub-arrays of a multi-dim array</title>
      <link>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283401#M3424</link>
      <description>&lt;BLOCKQUOTE&gt;dushyant wrote:&lt;BR /&gt;
Strange, I get this error..
&lt;/BLOCKQUOTE&gt;

&lt;BR /&gt;
What version of Archicad are you using?&lt;BR /&gt;
I did this in 22 and just checked in 25 and still no error messages.&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
      <pubDate>Tue, 13 Jul 2021 09:05:59 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Length-Size-of-one-of-the-sub-arrays-of-a-multi-dim-array/m-p/283401#M3424</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2021-07-13T09:05:59Z</dc:date>
    </item>
  </channel>
</rss>

