05-30-2023 03:22 PM
Howdy guys! Is it possible to multiply two arrays in such a way that the first element of the first array is multiplied by the first element of the second array. Next, the second element of the first array is multiplied by the second element of the second array, etc. If so, how to implement it, having two 1D arrays of the same dimension at hand. Thanks to all in advance)
Solved! Go to Solution.
05-30-2023 03:30 PM - edited 05-30-2023 03:32 PM
Just wire the two arrays directly to the two inputs of a multiplication. No need for loops or anything. 😄
Easy! Right?
05-30-2023 03:41 PM
Absolutely. I really thought that solution should be more difficult. Thank you, altenbach, you saved me again)