04-05-2021 01:13 PM
Hello everyone, I am trying to reshape the array (Raw Data) to the Desired Array. I tried to use the transpose function but it does not give me the right form. Can someone please kindly help me with this problem?
Solved! Go to Solution.
04-05-2021 01:38 PM - edited 04-05-2021 01:38 PM
I don't know of a function that will do this for you, I think the easiest way would be to build up 2 arrays using a for loop, one for even numbered rows and one for odd numbered rows. Note that "concatenating" and "conditional" are selected on the for loop outputs.
Then you build, transpose, or format into text as you please.
04-05-2021 01:45 PM
Thank you very much for your fast reply Gregory. I did exactly what you said and got the result.