The community will undergo maintenance on October 16th at 10:00 PM PDT and will be unavailable for up to one hour.
Hello,
I am trying to assign the last row of a vector of values to my result. I want to start assigning from the second column and assign that value in the first column of a new variable but it is telling me that array index is invalid. Please help me to solve it.
Thank you,
Faisal
Solved! Go to Solution.
Hi Faisal,
You iterate to the last element in the counter "i", You cannot index to :"i +1" past the last element,
Simply adjust the counter "i". See enclosed.
Regards
Terry
Thank you