LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

sum array of clusters column

Solved!
Go to solution

How can i sum an array of clusters anyone column? Like attachmend array of clusters  example.

0 Kudos
Message 1 of 5
(2,693 Views)
Solution
Accepted by keremgeliz

Use a shift register on your FOR loop to hold the sum.  You add the current sum with the current cluster's value and put the value in the shift register.  You will need one for each sum you want to take.


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
Message 2 of 5
(2,689 Views)

Thank for your help now its working perfectly.

0 Kudos
Message 3 of 5
(2,682 Views)
Solution
Accepted by keremgeliz

Try this:

 

 

Download All
Message 4 of 5
(2,677 Views)

@keremgeliz wrote:

Thank for your help now its working perfectly.


No, that's not good:

 

  • You are creating extra array allocations, just to take the sum later and reduce it back to a single number.
  • Your shift registers has absolutely no purpose because you never use their value and never initialize them.

Compare with my solution above.

0 Kudos
Message 5 of 5
(2,673 Views)