I need to create some arrays, from other arrays. I used the append function and in worked fine so that
example array E {1,2,3,4...}
then D.append(E[0]) makes array D {4,3,2,1...}
But, When I try to do the same append, with say array F and H, or I and J, The append function doesn't work, and I get
"C1040 Channel does not have any valid values" for the line in the sequence that uses the append function.
This error happens even when I use the same arrays as E and D, redefined into F and H.
I know the arrays have valid values, because I see them propagate fine using channels E and D, but not with F and H. Also, using the exact same arrays that worked for channels E and D, do not work with the append function for F and H. I have tried renaming channels, and searched the document to see if there are already channels, or variables with the same name, but that isnt the problem either.
What is up with the append function? What is going wrong. Ive spent 3 days on this so far.











