I am trying to count analog peaks above a certain value and am having trouble with the count because apparently the loop that is receiving the signal is only looking at the last value in the sample. I see there is a vi for Peak Threshold Detection that would (I think) accomplish what i need, but it is not available in the Base package of Labview. My vi does everything I wish right now, except for correctly counting the sample, and I would like to avoid upgrading at this time if it is possible. Can anyone tell me how I can evaluate all the data points in the sample? I am fairly new to Labview and appreciate any help I get.
Thanks for responding, I figured out a way to do it myself. I put the sample into an array, sort it, then find the index of the first array item that exceeds my threshold and add this to the previous cycle's total. I have attached my vi if anyone cares to give me any feedback, this is my first non-trivial project in Labview.