The Daily CLAD

Community Browser
cancel
Showing results for 
Search instead for 
Did you mean: 

Re: Reshaping Arrays

SercoSteveB
Active Participant

What are the contents of Array Out following execution of the VI?

Reshape Array 13_07_2014.png

Reshape Array 13_07_2014 Answers.png

Comments
LordNobady
Member

I think C


Learning LabVIEW since January 2013
crossrulz
Knight of NI

C


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
MrStevenUND
Member

C

glskinner
Member

Is this because arrays are read from left to right?

crossrulz
Knight of NI

Rows then columns.  In memory it is actually {Steve, Likes, LabVIEW, John, Codes, LabWindows, Dave, Does, TestStand}.  There is additional data at the beginning of the array to state the dimension sizes ({3,3} in this case.  With the Reshape Array, we are actually redefining those dimension sizes.  In this case, to {4}.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
vksingh
Member

c

thats it for now....
mini09
Active Participant

C

SercoSteveB
Active Participant

Answer: C.  Nice one LordNobady, crossrulz, MrStevenUND, vksingh & gnshmrthy.

Nice explanation crossrulz, thanks.