Re: macro creating n Arrays within a "for"-loop

Posted by Johannes-P. Koch on
URL: http://imagej.273.s1.nabble.com/macro-creating-n-Arrays-within-a-for-loop-tp3688201p3688208.html

Unfortunately not; I suppose, the second line defines name as an array,
thus ignoring the first line...meaning that I only get ONE array after the
loop...anyhow, I managed to implement everything in the loop; it is now a
little bit weired, but it works fine for me...

Johannes

On So, 2.05.2010, 16:14, Gabriel Landini wrote:
>>      name = "test " +i;
>>      name = newArray(k);
>
> Maybe because you are trying to make a variable name that contains a
> space.
> Try removing it.
>
> G.
>