04-15-2021, 08:27 PM
(This post was last modified: 04-15-2021, 08:38 PM by worcestersource.
Edit Reason: Typo and tidy formatting
)
Just the clarify the syntax for copying an array, if mine has dimensions of 27,7, I'd type:
Because doing this doesn't appear to copy the data.
Thanks,
Steve
Ah. I figured it out. In the example above, it is literally as Boriel said.
What's great with the quick code/compile cycle is that you can use trial and error to figure things out.
Steve
Code:
array1(27,7) = array2(27,7)
Because doing this doesn't appear to copy the data.
Thanks,
Steve
Ah. I figured it out. In the example above, it is literally as Boriel said.
Code:
array1 = array2
What's great with the quick code/compile cycle is that you can use trial and error to figure things out.

Steve