10-28-2010 02:54 AM
I have tried but came to an stop...
How do I convert 8 Rows by 2 Columns to 2 Rows by 8 Columns?
as shown in the vi attached
Thank you very much...
Solved! Go to Solution.
10-28-2010 03:10 AM
Hi Diego2000,
Trying using the Transpose 2D array function found in the Array functions palette, think it is what you are asking for.
Regards,
10-28-2010 03:25 AM
@JohnMc19 wrote:
Hi Diego2000,
Trying using the Transpose 2D array function found in the Array functions palette, think it is what you are asking for.
Regards,
No, for the required transformation reshape array is required, not transpose.
Compare:
Andrey.
11-01-2010 02:34 AM
Thank you Andrey:
I believe that will work.
So, if my array is of a longer size, I'll just enclose it
in a while loop, right?
thanks again...
11-01-2010 02:49 AM
@Diego2000 wrote:
So, if my array is of a longer size, I'll just enclose it in a while loop, right?
No, it doesn't matter which size you have (the only memory is your limit). Just get dimensions programmatically and reshape it:
Andrey.