08-08-2011 03:14 PM
LabVIEW does not distiguish between column vectors and row vectors, both are just 1D arrays. Do you actually have 1xN and Nx1 2D arrays instead? Do you have 1xN and Nx1 Matrices?
A plain multiply of 1D arrays would make a new 1D array, multiplying corresponding elements, so if you get a scalar out, you must be using something else, e.g. using matrix datatype or tools from the linear algebra palette already.
It would be so much easier to help if you could show us your code to see what you actually have and how you wire things up. Please attach a simplified VI. Make sure the controls contain typical default data so we don't need to guess what kind of inputs you are using. (Enter the data into all controls, edit...make current values default, save and attach the VI)
08-09-2011 04:01 AM
Thanks a lot guys, that's it working with the Outer Product VI.
Sorry I didn't upload anything, there wasn't anything to upload relevant to the problem except a couple of 1D arrays.
I've attached an example of what I was wanting to achieve.